Answers for "css select first two elements"

CSS
2

select first div css

#content div:first-child {
/*css*/
}
Posted by: Guest on May-08-2020
0

select first 5 child css

li:nth-child(-n+5) {
    color: green;   
}
Posted by: Guest on May-28-2020

Code answers related to "css select first two elements"

Browse Popular Code Answers by Language