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

#57719
jamygolden
Member

You can if they’re siblings:

h2 ~ h2{border-bottom: 3px solid red;}

I don’t think you will be able to do this (If they’re not siblings) as CSS cascades.