Drop Down Not Working In Ie8 And Ie9
html:
Solution 1:
Well, in order to style those in IE, you might need to get the actual <select>
to be wider than the <div>
you have. What you are looking for is probably something like this: http://jsfiddle.net/qhCsJ/2187/
Solution 2:
It looks like the appearance property is not supported in Internet Explorer- this is the problem.
There's a pseudo-element for the dropdown arrow on IE. Try adding this CSS (customized for your page).
.select-control::-ms-expand {
display: none;
}
Post a Comment for "Drop Down Not Working In Ie8 And Ie9"