Removing Select Arrow on IE
In the pursuit of customizing select elements by removing their default arrows, the aforementioned CSS seems to fall short when it comes to Internet Explorer 9 (IE9). Here's how to rectify this issue:
Solution:
select::-ms-expand { display: none; }
Alternative Options:
The above is the detailed content of How to Remove the Select Arrow in Internet Explorer 9?. For more information, please follow other related articles on the PHP Chinese website!