Hide Select Element Arrow – Internet Explorer 10 and up, and other browsers

CSS File

// Internet Explorer 10
select::-ms-expand {
  display:none;
}

// Other Browsers
select {
  -webkit-appearance:none;
  -moz-appearance:none;
  -o-appearance:none;
   appearance:none; 
}

Leave a Reply

Your email address will not be published. Required fields are marked *