如何选择所有伪类子元素?
有没有更简洁的 CSS 编写方法?
.vertical > a:link,
.vertical > a:visited,
.vertical > a:hover,
.vertical > a:active
{color:blue;}
我只是想选择 .vertical div 内的所有 a 伪类并将其全部设置为蓝色。
Is there a more concise way of writing this CSS?
.vertical > a:link,
.vertical > a:visited,
.vertical > a:hover,
.vertical > a:active
{color:blue;}
I am just looking to select all the a pseudoclasses inside a .vertical div and set all to blue.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该有效:
通常有一个更强的规则来覆盖它,因此您可能必须使用伪类来创建同样强大的规则,或者使用
!important
或其他选择器来查看的影响。This should work:
It is common to have a stronger rule that overrides it though, so you may have to use the pseudo-classes to create an equally strong rule, or use
!important
or other selectors to see the effects.这对于
.vertical
类元素中的所有a
标记来说是最基本的:或者:
对于直接子元素的
a
标记.vertical 类的。This is as basic as you can make it for all
a
tags within a.vertical
class element:or:
for
a
tags that are immediate children of the .vertical class.