Family.scss

Family.scss is a set of 20 smart Sass mixins which will help you to manage the style of :nth-child'ified elements, in an easy and classy way.

Install

Use the mixins

Input :

ul li {
  background: blue;

  @include first(3) {
    background: red
  }
}

Output :

ul li {
  color: blue;
}
ul li:nth-child(-n + 3) {
  color: red;
}