Last active
December 27, 2015 08:19
-
-
Save ingozoell/7295578 to your computer and use it in GitHub Desktop.
Add :nth-child support for old IE
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.oldie ul li.every-3rd {background: #999;} | |
ul li:nth-child(3n+3) {background: #999;} /* modern browser */ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$('.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