對作為其父元素的第二個子元素的每

一個元素使用 CSS 設定樣式


要對作為其父元素的第二個子元素的每一個 <p> 元素設定樣式,請使用 CSS :nth-child(n) 選擇器。

示例

你可以嘗試執行以下程式碼來實現 :nth-child(n) 選擇器

線上示例

<!DOCTYPE html>
<html>
   <head>
      <style>
         p:nth-child(4) {
            background: orange;
            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>

更新於:30-06-2020

837 次瀏覽

開啟你的 事業

完成課程獲得認證

開始吧
廣告
© . All rights reserved.