CSS :nth-child()

使用 nth-child 選取指定個數的元素。

  /* 在body中,單數並且有.item的元素 */
  body .item:nth-child(odd){
    background-color:#ccc;
  }
  /* 在body中,雙數並且有.item的元素 */
  body .item:nth-child(even){
    background-color:#ccc;
  }
  /* 在body中,第1個並且有.item的元素 */
  body .item:nth-child(1){
    background-color:#ccc;
  }
  /* 在body中,第1, 4, 7...並且有.item的元素 */
  body .item:nth-child(3n+1){
    background-color:#ccc;
  }
  /* 3 * 0 + 1 = 1 */
  /* 3 * 1 + 1 = 4 */
  /* 3 * 2 + 1 = 7 */

這個網誌中的熱門文章

SwiftUI設定深色模式

從零開始設置建立Next.js網站所需環境 (macOS)

AOS 基本使用方法 (javascript 捲軸動畫)