选择每个

从最后一个子元素开始计算时是其父元素的第二个

元素


使用 CSS :nth-last-of-type(n) 选择器选择从最后一个子元素开始计算时是其父元素的第二个 <p> 元素。

示例

可尝试运行以下代码来实现 :nth-last-of-type(n) 选择器

现场演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-last-of-type(2) {
            background: blue;
            color: white;
         }
      </style>
   </head>
   <body>
      <p>This is demo text 1.</p>
      <p>This is demo text 2.</p>
      <p>This is demo text 3.</p>
      <p>This is demo text 4.</p>
      <p>This is demo text 5.</p>
   </body>
</html>

更新于: 2020-06-30

1K+ 次浏览

开启你的 事业

完成课程以获得认证

开始
广告