针对每个

是其父级元素的最后一个子元素的元素应用样式 CSS


若要对是其父级元素的最后一个子元素的每个

元素应用样式,请使用 CSS :last-child 选择器。您可以尝试运行以下代码以实现 :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 日

查看次数 109

开启你的职业生涯 之路

通过完成课程获得认证

开始
广告
© . All rights reserved.