Forums

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

Home Forums CSS Targeted CSS? Re: Targeted CSS?

#98235

There are a couple of ways to do it, although the second method only works in IE9 and up:

ul > li + li { ... }
ul > li:nth-child(2) { ... }