Skip to content

Instantly share code, notes, and snippets.

@Abby805
Last active August 29, 2015 14:19
Show Gist options
  • Save Abby805/ee4ba08e7a787a699386 to your computer and use it in GitHub Desktop.
Save Abby805/ee4ba08e7a787a699386 to your computer and use it in GitHub Desktop.
Nth-child mixin
//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;
}
}
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