Nth-Child Selectors

Nth-Child Selectors

Nth-Child Selectors merupakan selector pada css 3 yang digunakan untuk memberikan property pada tag atau class yang ada pada urutan tertentu, seperti Baris Pertama, Baris Terakhir, Baris kelipatan dari 2 dan sebaliknya.

  • Results
  • Code

:first-child

:last-child

:nth-child(2)

:nth-child(odd)

:nth-child(even)

:nth-child(n+2)

:nth-child(2n)

:nth-child(2n+2)

:nth-child(2n-2)

Referensi : https://www.w3schools.com/cssref/sel_nth-child.php
https://developer.mozilla.org/en-US/docs/Web/CSS/:nth-child
https://www.dumetschool.com/blog/cara-menerapkan-first-child-dan-nth-child-pada-css3

Comments