CSS3 nth-of-type across the entire page?
问题 It seems to me that nth-of-type only works within the same parent element. Is there any way to get it work across the whole page? My situation: I would like to cycle through five hover colors for links. These links are scattered across many paragraphs. Since there are only one or two links per paragraph, the first couple of hover colors are disproportionately favored. Thanks! 回答1: nth-of-type always looks at the element's index relative to it's direct parent: (w3schools), so it won't work