样式化所有

其父元素的子元素,从最后一个子元素开始计数


使用 CSS :nth-last-child(n) 选择器样式化其父元素的每个 <p> 元素,从最后一个子元素开始计数。你可以尝试运行以下代码来实施 :nth-last-child(n) 选择器

范例

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-last-child(4) {
            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>
      <p>This is demo text 6.</p>
   </body>
</html>

输出

更新于:6 月 22 日,2020 年

146 次浏览

开启您的 职业生涯

完成课程即可获取认证

开始学习
广告