Answers for "nth 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
0

select third element of an id css

dl#id dd:nth-of-type(3)
Posted by: Guest on June-25-2020

Browse Popular Code Answers by Language