給每個

作為其父元素的第二個子元素的元素新增樣式


若要使用 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>

更新日期:2020 年 6 月 30 日

837 次瀏覽

開啟您的 職業生涯

完成課程取得認證

開始
廣告