How to remove the dropdown arrow in Internet Explorer
Posted onUnlike other browsers, Internet Explorer will not fully disable a <select> element’s style when you use the CSS3 appearance property. To hide the dropdown’s arrow, use the following CSS line:
select::-ms-expand { display: none; }