我有这个 CSS
.pages a {
text-decoration: none;
color: #1e1e1e;
font-weight: bold;
display: inline;
padding-left: 8px;
}
.pages a:after {
content: "|";
padding-left: 8px;
}
我希望内容在a:after
最后|
一个“a”之后。我该怎么做?我尝试使用:last-of-type
,但它没有用。
目前看起来像这样
1 | 2 | 3 |