你好
我尝试为使用 :after
添加的内容设置样式,color: ;
被覆盖,但是 text-decoration: ;
没有不工作。
code.html
<html>
<head>
<style>
.separate-hyphen *:not(:last-child):after {
content: " -\00a0";
text-decoration: none;
color: red;
}
</style>
</head>
<body>
<div class="separate-hyphen">
<a href="link1.extension">Link 1</a>
<a href="link2.extension">Link 2</a>
</div>
</body>
</html>
result (这是一张图片)
因为伪元素 :after
呈现在元素的内部,而不是外部,所以它的样式当然不会影响外部容器样式:
+--------------------+
| +--------+ |
| Content | :after | |
| +--------+ |
+--------------------+
你需要另辟蹊径。也许可以通过绝对定位将 :after
视觉移动到其容器之外:
.separate-hyphen *:not(:last-child) {
margin-right: 10px;
}
.separate-hyphen *:not(:last-child):after {
content: " -\00a0";
text-decoration: none;
color: red;
position: absolute;
padding: 0 5px;
}
<div class="separate-hyphen">
<a href="link1.extension">Link 1</a>
<a href="link2.extension">Link 2</a>
</div>
我是一名优秀的程序员,十分优秀!