>  기사  >  웹 프론트엔드  >  IE9에서 선택 화살표를 제거하는 방법은 무엇입니까?

IE9에서 선택 화살표를 제거하는 방법은 무엇입니까?

Patricia Arquette
Patricia Arquette원래의
2024-11-15 03:52:02437검색

How to Remove the Select Arrow in IE9?

Removing the Select Arrow in IE9

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 중국어 웹사이트의 기타 관련 기사를 참조하세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.