gpt4 book ai didi

html - not() 和 first-child 选择器之间的特殊性

转载 作者:行者123 更新时间:2023-11-28 05:22:33 25 4
gpt4 key购买 nike

所以我们有以下关于 not()p:first-child{} 选择器的示例。示例如下:

<!DOCTYPE html>
<html>
<head>
<style>
p:first-child{
color: red;
}
p:not(a){
color: green;
}
</style>
</head>
<body>

<p>This a paragraph.</p>

</body>
</html>

为什么段落最后是红色的?有人可以解释(如果可能的话)为什么 p:first-child{}not() 选择器具有更大的特异性吗???

最佳答案

Can somebody explain (if possible ) why the p:first-child{} has bigger specificity than not() selector?

因为 :not() 对特异性本身没有任何影响——只有它内部的内容才算特异性。

所以你有元素选择器 p 和伪类 :first-child,它给出了 0-0-1-1 的特异性code> – 你有元素选择器 pa,结果是 0-0-0-2

关于html - not() 和 first-child 选择器之间的特殊性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36610048/

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