29

我有一个Lessmixin定义为:

.fontStyle(@family, @size, @weight: normal, @style: normal, @color: #ffffff, @letter-spacing: normal) {
  font-family: @family;
  font-size: @size;
  color: @color;
  font-weight: @weight;
  font-style: @style;
 letter-spacing: @letter-spacing;
}

我如何定义用法,例如:

.fontStyle('NimbusSansNovCon-Reg', 12px, , , , 0.1em);

IE 使用@weight, @style,的默认值@color

4

2 回答 2

35

要提供一个在参数字符串后面的参数,您还必须提供它要定义的预期变量。所以这:

.fontStyle('NimbusSansNovCon-Reg', 12px, @letter-spacing: 0.1em);

产生这个(注意如何colorfont-weightfont-style使用默认值):

font-family: 'NimbusSansNovCon-Reg';
font-size: 12px;
color: #ffffff;
font-weight: normal;
font-style: normal;
letter-spacing: 0.1em;
于 2013-06-14T20:28:10.223 回答
2

请参阅文档

http://lesscss.org/features/#mixins-parametric-feature-mixins-with-multiple-parameters

注意:您应该养成使用分号分隔参数的习惯,因为某些 css 值可以包含逗号。

于 2014-04-12T20:07:07.103 回答