How to get rid of link underline in Chrome?
How do I get r开发者_运维百科id of the blue link underline in Chrome?
Via CSS with text-decoration: none;
EDIT:
For the actual full CSS
a, a:hover, a:visited { text-decoration: none; }
You should be more specific than that. If you're talking about just removing link underline, then you can do it simply by css using so:
a {
text-decoration: none;
}
This has nothing to do with chrome though, it's generic.
精彩评论