Last active
August 29, 2015 14:19
-
-
Save Abby805/ee4ba08e7a787a699386 to your computer and use it in GitHub Desktop.
Nth-child mixin
This file contains 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
//Mixin | |
@mixin nth-child($i...) { | |
$selectors: (); | |
@each $num in $i { | |
$selectors: join($selectors, unquote('&:nth-child(#{$num})'), comma); | |
} | |
#{$selectors} { | |
@content; | |
} | |
} | |
//Example usage | |
li { | |
@include nth-child(2,4) { | |
float: left; | |
} | |
} |
This file contains 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
li:nth-child(2), li:nth-child(4) { | |
float: left; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment