選擇每個

從最後一個子元素開始計算時是其父元素的第二個

元素


使用 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+ 次瀏覽

開啟你的 事業

完成課程以獲得認證

開始
廣告