Answers for "section &:nth-of-type css"

CSS
1

css nth of type

/* Selects every fourth <p> element
   among any group of siblings */
p:nth-of-type(4n) {
  color: lime;
}
Posted by: Guest on October-12-2021

Browse Popular Code Answers by Language