你好SOF男人和女孩:)
是否有机会使用Sass获取此数学示例的结果(我的意思是output.css文件中的最终结果):
1000 - 20%= 800
例如,如果我尝试这样的事情:
$people: 1000
$dumb_by_trump: percentage(0.2)
$total_adequate: $people - $dumb_by_trump
us poll
hello_world: $total_adequate
然后我会在output.css文件中看到结果为:
us poll {
hello_world: 980%; }
但我们需要看到“800”。可能吗?感谢。
答案 0 :(得分:1)
按常数值乘以百分比
$people: 1000
$dumb_by_trump: percentage(0.2)
$total_adequate: $people - $people*($dumb_by_trump/100%)
us pool
hello_world: $total_adequate
us pool {
hello_world: 800;
}