如何摆脱Chrome中的链接下划线?

dja*_*00b 2 html css

如何摆脱Chrome中的蓝色链接下划线?

tlu*_*ter 6

通过CSS与 text-decoration: none;

编辑:

对于实际的完整CSS

a, a:hover, a:visited
{
    text-decoration: none;
}