gpt4 book ai didi

css 分组选择器

转载 作者:行者123 更新时间:2023-11-28 09:21:00 26 4
gpt4 key购买 nike

没有分组我们可以这样做:

.footer_content a:link {
color: #FFFFFF;
}
.footer_content a:visited {
color: #FFFFFF;
}

分组:

.footer_content a:link, .footer_content a:visited {
color: #FFFFFF;
}

有没有办法定义 css 选择器来摆脱额外的 .footer_content 声明做同样的事情?看起来有点像这样的东西:

.footer_content (a:link, a:visited) {
color: #FFFFFF;
}

最佳答案

目前还没有一种普遍支持的实现方式。

但是,实验:any() selector如果它得到实现和标准化,将使这成为可能。除了最新的 Firefox nightlies 之外,任何浏览器都不支持它。

关于css 分组选择器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6167464/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com