How to stop LinkButton from being greyed out by IE when disabled?
Is there an 开发者_开发问答easy way to stop LinkButtons from being greyed out in IE when disabled, as it makes them hard to read.
Thanks
Change the css styles for disabled link buttons.
See how do do it it here.
As the question is tagged with "css", I think this answer could be helpful too:
The key concept of styling a link stands toward following steps:
- You have to declare styles of 4 different condition which are
a:link
,a:visited
,a:hover
,a:active
. - You have to be careful about the order. Because it matters. link > visited > hover > active.
- Eventhough you don't need styling one or more of conditions, nevertheless, style them all.
If you pay attention to these, you may have perfectly styled links.
I hope it helps.
精彩评论