Why is a <select> dropdown element (the arrow) sometimes white and sometimes gray?
I have this sample code:
<html>
<body>
<select>
<option>1</option>
</select>
</body>
</html>
When I’m testing the code as a .html page in IE 9, the result looks like this:
http://img0.www.suckmypic.net/img/7/n/xaxKK6g5/IEresult1.png
And when I’m testing the code with JSFiddle in IE 9, the result looks like this:
http://img0.www.suckmypic.net/img/A/h/S4o4tOP7/IEresult2.png
Why? And how can i force the select to be “gray”?
Fiddle Example: http://jsfiddle.net/VuSWz/
Like on of your comments said, you have 2 render modes.
Look @ this Question.
CSS for the "down arrow" on a <select> element?
Here you can learn how to have the same drop down arrows with the help of css code.
Hope i could help you.
Regards