代码之家  ›  专栏  ›  技术社区  ›  Nick Parsons Felix Kling

重置css中的伪类更改

  •  3
  • Nick Parsons Felix Kling  · 技术社区  · 6 年前

    在下面的代码片段中,我将第一个列表项设为红色,并隐藏了所有其他列表项。

    然后,我试图显示所有的列表项,并通过将目标锁定为 li 元素。

    当前,没有使用最后一个 正在制作选择器。

    所以, 我在想为什么最后一个 选择器对视觉输出没有影响?

    谢谢

    li:not(:first-child) { /* Hide all li elements other than the first one */
      display: none;
    }
    
    li:first-child { /* Set list item 1 to be red */
      color: red;
    }
    
    /* Undo all changes above */
    li { /* Make all li elements have this property ()*/
      display: block;
      color: black;
    }
    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item 3</li>
    </ul>
    2 回复  |  直到 6 年前
        1
  •  4
  •   Temani Afif    6 年前

    增加 specificity 以获得所需的结果。

    下面是一个示例,其中所有选择器都具有相同的特定性(类+伪类),最后一个选择器将获胜:

    li:not(:first-child) { /* Hide all li elements other than the first one */
      display: none;
    }
    
    li:first-child { /* Set list item 1 to be red */
      color: red;
    }
    
    /* Undo all changes above */
    li:nth-child(n) { /* Make all li elements have this property ()*/
      display: block;
      color: black;
    }
    <ul>
      <li>Item 1</li>
      <li>Item 2</li>
      <li>Item 3</li>
    </ul>
        2
  •  2
  •   Kevin Bruccoleri    6 年前

    https://developer.mozilla.org/en-US/docs/Web/CSS/:not

    这个伪类可以增加规则的特殊性。例如, #foo:not(#bar) 将与更简单的 #foo ,但具有较高的特异性。

    你的第一条规则比最后一条规则更具体,所以 display: none; 有效期为 display: block; 被忽略。