css pseudo classes nth child code example
Example 1: select first 5 child css
li:nth-child(-n+5) {
color: green;
}
Example 2: using nth child css
p:nth-child(2)
{
background: red;
}
li:nth-child(-n+5) {
color: green;
}
p:nth-child(2)
{
background: red;
}