我嘗試被添加了: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>
結果(這是一個圖像)
邊框可以正常工作。在這種情況下你想達到什麼目的? –
對不起,我不小心使用了邊框,因爲我習慣用邊框替換文字裝飾以獲得更多的控制;我編輯了我的文章 –