Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Target with CSS all h2 EXCEPT first one on a page Re: Target with CSS all h2 EXCEPT first one on a page

#57736
noahgelman
Participant

Use:
:nth-of-type(n+2)

n=0, then it targets the second.
n=1, then it targets the third.
n=2, then it targets the forth.
etc.

I think you guys were over thinking this.