數字函數-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() 函數中可以攜帶單位的任何數值。