:not(selector) 选择器的 CSS 的作用


使用 CSS :not(selector) 选择器设置样式,使该选择器以外的每个元素都显示指定的样式。你可尝试运行以下代码以实现 :not 选择器

示例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p {
            color: red;
         }
         :not(p) {
            color: blue;
         }
      </style>
   </head>
   <body>
      <h1>Heading 1</h1>
      <h2>Heading 2</h2>
      <h3>Heading 3</h3>
      <p>This is a paragraph.</p>
      <p>This is another paragraph.</p>
   </body>
</html>

更新于:2020 年 6 月 30 日

295 次浏览

开启你的职业

通过完成课程获得认证

开始
广告