Answers for "every 4th child css"

CSS
0

css last 3 childs

#something a:nth-last-child(-n+3) {
    /*declarations*/
}
Posted by: Guest on October-13-2020
6

second child css

.YourElementsClass:nth-child(2) {
  /* your styles */
}
Posted by: Guest on March-28-2021

Browse Popular Code Answers by Language