我试图为我的字体大小和行高创建一个 LESS mixin,但是当我尝试运行它时出现错误。任何人都可以建议我可能在哪里出错:
.font( @size: 1.6, @line: @size * 1.5 ){
@fontSizeRem: @size;
@fontSizePx: ( @size * 10 );
@lineHeightRem: @line;
@lineHeightPx: ( @line * 10 );
font-size: ~"@{fontSizePx}px";
font-size: ~"@{fontSizeRem}rem";
line-height: ~"@{lineHeightPx}px";
line-height: ~"@{lineHeightRem}rem";
}
h1{
.font(1.6);
}