Home › Forums › CSS › Targeted CSS? › Re: Targeted CSS?
March 5, 2012 at 10:24 pm
#98235
Member
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) { ... }