Answers for "select 3 last odd childs css"

CSS
0

css last 3 childs

#something a:nth-last-child(-n+3) {
    /*declarations*/
}
Posted by: Guest on October-13-2020
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