CSS :last-child 选择器的作用


使用 CSS :last-child 选择器可以设置对其父元素而言为最后一个子元素的每个 <p> 元素的样式。你可以尝试运行以下代码来实现 :last-child 选择器

在线演示

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:last-child {
            background: orange;
         }
      </style>
   </head>
   <body>
      <p>This is demo text1.</p>
      <p>This is demo text2.</p>
      <p>This is demo text3.</p>
   </body>
</html>

更新日期:2020 年 6 月 22 日

186 次浏览

开启你的 职业生涯

完成课程即可获得认证

开始
广告
© . All rights reserved.