Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想在 :target 元素上使用 :after 来选择 CSS 中的元素。我试过这段代码,但它不起作用。
.myclass a:target:after{}
我该怎么做?
:target是一个伪类
:target
:after是一个伪元素。
:after
W3.org - 链接 - 声明::
选择器中的任何位置都允许使用伪类,而伪元素只能附加在选择器的最后一个简单选择器之后。
这个问题基本上是重复的,去这里。
我会尝试一个span:target::after { }
span:target::after { }