I would like to know if it's possible to force a CSS Color on a "disabled=true" textbox? By default, this attribute is removing the css font color and replacing it by a very light gray.
Thanks
I would like to know if it's possible to force a CSS Color on a "disabled=true" textbox? By default, this attribute is removing the css font color and replacing it by a very light gray.
Thanks
I found the problem with just using input[disabled='disabled'] was that it also includes checkboxes and radio buttons which I didn't want to handle quite the same way. I found the following method worked for me...
INPUT[type=text][Disabled],
INPUT[type=search][Disabled],
INPUT[type=password][Disabled],
SELECT[Disabled] { color:blue;}