Answers for "nth-child"

CSS
12

css odd even child

tr:nth-child(even) {background: #CCC}
tr:nth-child(odd) {background: #FFF}
Posted by: Guest on February-26-2020
6

css nth child

/* Select the first list item */
li:nth-child(1) { }

/* Select the 5th list item */
li:nth-child(5) { }

/* Select every other list item starting with first */
li:nth-child(odd) { }

/* Select every 3rd list item starting with first */
li:nth-child(3n) { }

/* Select every 3rd list item starting with 2nd */
li:nth-child(3n - 1) { }

/* Select every 3rd child item, as long as it has class "el" */
.el:nth-child(3) { }
Posted by: Guest on May-30-2020
4

select even child css

li:nth-child(even) { /* Selects only even elements */
    color: green;   
}
Posted by: Guest on May-28-2020
9

child css

p:nth-child(2)
 	{     
 		background: red;
 	}
Posted by: Guest on May-14-2020
2

nth-child

tag/id/class:nth-child(number/even/odd/expression) {
  css declarations;
}
Posted by: Guest on July-21-2021
0

nth-child

/* Select the first list item */
li:nth-child(1) { }

/* Select the 5th list item */
li:nth-child(5) { }

/* Select every other list item starting with first */
li:nth-child(odd) { }

/* Select every 3rd list item starting with first */
li:nth-child(3n - 2) { }

/* Select every 3rd list item starting with 2nd */
li:nth-child(3n - 1) { }

/* Select every 3rd child item, as long as it has class "el" */
.el:nth-child(3n) { }
Posted by: Guest on August-17-2021

Browse Popular Code Answers by Language