Answers for "how to remove the arrow from aselect in html"

1

hide select tag dropdown caret

appearance: none;
-webkit-appearance: none;
-moz-appearance: none;

/* For IE <= 11 */
select::-ms-expand {
   display: none;
}
Posted by: Guest on October-16-2020

Code answers related to "how to remove the arrow from aselect in html"

Browse Popular Code Answers by Language