LukyVj / family.scss
- вторник, 24 мая 2016 г. в 03:13:00
HTML
None
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.
$ middleman
( You don't use middleman ? Goto https://middlemanapp.com/ )Input :
ul li {
background: blue;
@include first(3) {
background: red
}
}
Output :
ul li {
background: blue;
}
ul li:nth-child(-n + 3) {
background: red;
}
It's true, I did it for Sass, but some awesome contributors extended it to :