Is there an alternative for targeting elements using nth-child() for older IE browsers?
nth-child()
Javascript (non-jquery) would suffice as well.
EDIT: Given additional libraries cannot be added to the page.
it sucks a little, but you can
ul > li {} /* first-child, overwritten by below */ ul > li + li {} /* second-child, overwritten by below, etc */ ul > li + li + li {} ul > li + li + li + li {}
Repeat as necessary.
1.4m articles
1.4m replys
5 comments
57.0k users