Sass函数:数字函数-round()函数
Posted keep
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Sass函数:数字函数-round()函数相关的知识,希望对你有一定的参考价值。
round() 函数可以将一个数四舍五入为一个最接近的整数:
>> round(12.3)
12
>> round(12.5)
13
>> round(1.49999)
1
>> round(2.0)
2
>> round(20%)
20%
>> round(2.2%)
2%
>> round(3.9em)
4em
>> round(2.3px)
2px
>> round(2px / 3px)
1
>> round(1px / 3px)
0
>> round(3px / 2em)
2px/em
.footer { width:round(12.3px) }
编译后的 css 代码:
.footer { width: 12px; }
在round() 函数中可以携带单位的任何数值。
以上是关于Sass函数:数字函数-round()函数的主要内容,如果未能解决你的问题,请参考以下文章