Page 1 of 1
Why does my <select> show white and not black in IE9?
Posted: Wed Aug 15, 2012 11:11 am
by simonmlewis
Code: Select all
.blackselect
{
background-color: #000000;
color: #ffffff;
border: 1px solid #999999;
}
I need to set the background of this <select> to be all black, with just white text.
The CSS does it perfect in Firefox, but not in IE.
How do you do it properly for IE?
Simon
Re: Why does my <select> show white and not black in IE9?
Posted: Wed Aug 15, 2012 1:25 pm
by califdon
Internet Explorer has always had a few things that don't behave according to the standards.
See
http://stackoverflow.com/questions/3800 ... ct-element
Re: Why does my <select> show white and not black in IE9?
Posted: Wed Aug 15, 2012 1:31 pm
by simonmlewis
Heavens, all these years and IE has never let you just set the overall background color of it.