无论如何(在CSS中)避免在页面中引入的文本和链接的下划线..?
当前回答
使用CSS删除文本装饰。
a {
text-decoration: none;
}
其他回答
最简单的选择是:
<a style="text-decoration: none">No underline</a>
当然,混合CSS和HTML(即内联CSS)不是一个好主意,特别是当你到处使用标签的时候。 这就是为什么把它添加到样式表中是一个好主意:
a {
text-decoration: none;
}
甚至是JS文件中的这段代码:
var els = document.getElementsByTagName('a');
for (var el = 0; el < els.length; el++) {
els[el].style["text-decoration"] = "none";
}
当你想将一个锚标记简单地用作一个链接而不添加样式(如悬停时的下划线或蓝色)时,在锚标记中添加class="no-style"。然后在全局样式表中创建类no-style。
.no-style {
text-decoration: none !important;
}
这有两个好处。
它不会影响所有的锚标记,只会影响那些添加了“no-style”类的锚标记。 它将覆盖任何其他可能阻止将文本装饰设置为none的样式。
我在网印中一直被这个问题困扰并解决了。验证的结果。
a {
text-decoration: none !important;
}
它的工作原理!
如果你只是想从锚链接中删除下划线,最好的选择-
#content a {
text-decoration-line:none;
}
这将删除下划线。
此外,您也可以使用类似的语法来操作其他样式,使用-
text-decoration: none;
text-decoration-color: blue;
text-decoration-skip: spaces;
text-decoration-style: dotted;
希望这能有所帮助!
附注:这是我第一次回答!
使用CSS删除文本装饰。
a {
text-decoration: none;
}