文章来源
Mixins这个词来源于"mixing in"。表示在一个规则集(rule-set)中的一堆属性包含在另一个规则集中.
比如,我们先设置一个规则集如下:
border-top: dotted 1px black;
border-bottom: solid 2px black;
}```
然后我们将上面那个rule-set的属性用到其他rule-set中。我们只需要将上面rule-set的名字和属性一样写下来就可以了:
```#menu a {
color: #111;
.bordered;
}
.post a {
color: red;
.bordered;
}```
这样一来, .bordered中的属性也会出现在 #menu a 和 .post a 中.
**Learn more**
[More about mixins](http://lesscss.org/features/#mixins-feature)
[Parametric Mixins](http://lesscss.org/features/#mixins-parametric-feature)
网友评论