Skip to content

Instantly share code, notes, and snippets.

@devcut
Created December 10, 2019 10:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devcut/9fea1efed366b40a378d55429a527b39 to your computer and use it in GitHub Desktop.
Save devcut/9fea1efed366b40a378d55429a527b39 to your computer and use it in GitHub Desktop.
Styling elements based on sibling count
@for $i from 1 through 4 {
li:first-child:nth-last-child(#{$i}), li:first-child:nth-last-child(#{$i}) ~ li {
width: 100% / #{$i};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment