Disabled form fields style in Windows 7
I just recently upgraded to Windows 7 and I have noticed that styling for text form fields across开发者_StackOverflow中文版 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!
In CSS, following is a way to style disabled form elements:
[disabled]{
color:#8A8A8A;
background-color:#D5D5D5;
}
精彩评论