CSS :last-of-type 选择器的作用


使用 CSS :last-child 选择器来设置每个 <p> 元素的样式,这些元素是其父元素的最后一个子元素。

示例

可以尝试运行以下代码来实现 :last-child 选择器 −

在线演示

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

更新于:30-Jun-2020

99 次浏览

开启你的 职业生涯

完成本课程以获得认证

立即开始
广告