southbeach
Programmer
I am working on a form with no more than 8 fields. All was well until I added three new fields. These new fields are showing with a creamy or tan background.
I am using CSS to set background color on blur but not to this color. The fields seem to no adhere to the CSS I am using
Nothing happens with these fields even when focused. I even tried using style="..." within the <input ...> tag itself and nothing.
Using FF on Win XP
What is up with this?
Thanks!
I am using CSS to set background color on blur but not to this color. The fields seem to no adhere to the CSS I am using
Code:
input
{
color: #35592c;
font-family:arial;
font-size:14px;
border: 1px solid #00C;
height:20px;
padding: 2px 6px;
background-color: #FFF;
}
input:focus {
background-color: #E6E6FA;
}
Nothing happens with these fields even when focused. I even tried using style="..." within the <input ...> tag itself and nothing.
Using FF on Win XP
What is up with this?
Thanks!