Skip to content

Instantly share code, notes, and snippets.

@ingozoell
Last active December 27, 2015 08:19
Show Gist options
  • Save ingozoell/7295578 to your computer and use it in GitHub Desktop.
Save ingozoell/7295578 to your computer and use it in GitHub Desktop.
Add :nth-child support for old IE
.oldie ul li.every-3rd {background: #999;}
ul li:nth-child(3n+3) {background: #999;} /* modern browser */
$('.oldie ul li:nth-child(3n+3)').addClass('every-3rd');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment