Answers for "select other than first child css"

CSS
0

select first 5 child css

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

other children than first css

div ul:nth-child(n+2) {
    background-color: #900;
}
Posted by: Guest on November-08-2020

Code answers related to "select other than first child css"

Browse Popular Code Answers by Language