作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
考虑以下 sass:
$font-size: 18;
$em: $font-size;
$column: $font-size * 3; // The column-width of my grid in pixels
$gutter: $font-size * 1; // The gutter-width of my grid in pixels
$gutter-em: #{$gutter / $em}em; // The gutter-width in ems.
$column-em: #{$column / $em}em; // The column-width in ems;
$foo = $gutter-em / 2; // This results in a value like "1em/2". :(
$bar = ($gutter-em / 2); // this doesn't work either, same as above.
我怎样才能生成一个有效的 $foo
,并且我可以在其他表达式中进一步重用它?
最佳答案
Sass 不能对字符串进行算术运算,只能进行连接。当您使用插值时,您创建的是一个看起来像数字的字符串:
@debug type-of(#{10px}); // string
@debug type-of('10px'); // string
@debug type-of(unquote('10px')); // string
@debug type-of(10px); // number
如果你想要一个数字,不要使用插值,也不要使用引号。要将整数(例如 10
)转换为长度(例如 10px
),请使用乘法:
$gutter-em: ($gutter / $em) * 1em;
@debug type-of($gutter-em); // number
关于sass - 带插值变量的数学?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29882427/
我是一名优秀的程序员,十分优秀!