views:

34

answers:

1

Hi, I just recently upgraded to Windows 7 and I have noticed that styling for text form fields across all browsers is non-existent. With Windows XP it was very obvious which form fields were disabled, but now I can't tell.

Are there any style settings I could use to fix this?

Thanks!

+1  A: 

In CSS, following is a way to style disabled form elements:

[disabled]{
color:#8A8A8A;
background-color:#D5D5D5;
}
Aman Kumar Jain
I initially did this, but it affected all inputs, so I just created a class for text-fields.
chobo
So a class for [disabled] property isn't it?
Aman Kumar Jain