Question:
How can you remove the select element arrow in Internet Explorer 9 (IE9)?
Answer:
In IE9, the arrow cannot be removed using solely CSS. Instead, a hack is required, as provided by @Spudley in the question content. If the height and width of the div and select have been customized, the div:before CSS must be adjusted to match.
For IE10 and higher, you can utilize CSS3 by applying the following code:
select::-ms-expand { display: none; }
If you prefer a jQuery plugin, consider using Chosen.js or creating your own JavaScript solution.
위 내용은 IE9에서 선택 화살표를 제거하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!