css hide select arrow code example
Example 1: hide select tag dropdown caret
appearance: none;
-webkit-appearance: none;
-moz-appearance: none;
/* For IE <= 11 */
select::-ms-expand {
display: none;
}
Example 2: select box arrow hide css in ie
select::-ms-expand {
display: none;
}