Answers for "css every third child"

CSS
3

second child css

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

nth of type for every 4th after the 1st

:nth-of-type(4n+1)
Posted by: Guest on April-02-2020

Browse Popular Code Answers by Language