I have a form with four Textfields & 1 TextArea. Using CSS I wanted to change the background colors of these fields. In FF it works as expected. However, in IE the 4 textfields do not apply the background color while the textarea field does. You can see what I'm talking about here:
I've noticed the same thing on another page I'm working on here: On this page only 2 of the 4 fields are displaying the correct background color.
The CSS I'm using is:
The HTML is:
Why does IE not display all fields correctly?
I've noticed the same thing on another page I'm working on here: On this page only 2 of the 4 fields are displaying the correct background color.
The CSS I'm using is:
Code:
input.text, select.text, textarea.text { background:#B4CCE9; border:solid; border-width:1px; border-color:#000000;}
The HTML is:
Code:
<INPUT name="zip" type="text" class="text">
Why does IE not display all fields correctly?