Waqas
Waqas

Reputation: 97

How to customize drop down arrow in IE9

I used this:

select::-ms-expand {
    display: none;
}

But it only works in IE10.

I need this for IE9.

Upvotes: 3

Views: 79

Answers (1)

arodebaugh
arodebaugh

Reputation: 538

Use http://selectivizr.com/ to get the latest css3 for IE9 and bellow.

Example:

<script type="text/javascript" src="[JS library]"></script>
 <!--[if (gte IE 6)&(lte IE 8)]>
  <script type="text/javascript" src="selectivizr.js"></script>
<noscript><link rel="stylesheet" href="[fallback css]" /></noscript>
<![endif]-->

Good Luck!

Upvotes: 1

Related Questions