Can I get a stylesheet to detect a custom tag on a page element?
I'd like to add some functionality into a stylehseet that can detect a disabled="disabled" attribute on a linkbutton and grey it out.
[UPDATE]
Great suggestions. This effectively resolved the disabled buttons not showing up as grayed out in firefox and google chrome. The following was what I put into the style sheet and now all my link buttons render correctly.
a[disabled]{
color:Grey !important;
text-decoration:none !important;
}