标签: html css
如何清除Chrome中的蓝色链接下划线?
答案 0 :(得分:6)
通过CSS text-decoration: none;
text-decoration: none;
编辑:
对于实际的完整CSS
a, a:hover, a:visited { text-decoration: none; }
答案 1 :(得分:3)
你应该更具体。如果你所说的只是删除链接下划线,那么你可以通过css使用它来完成:
a { text-decoration: none; }
这与chrome无关,但它是通用的。