Answers for "select only odd css"

CSS
4

select odd child css

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

Browse Popular Code Answers by Language