gpt4 book ai didi

sass - 带插值变量的数学运算?

转载 作者:行者123 更新时间:2023-12-04 14:24:49 24 4
gpt4 key购买 nike

考虑以下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/8254941/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com