數字函數-percentage()
1、percentage()
percentage()函數主要是將一個不帶單位的數字轉換成百分比形式:
>> percentage(.2)
20%
>> percentage(2px / 10px)
20%
>> percentage(2em / 10em)
20%
>>
.footer{
width : percentage(.2)
}
編譯後的css 代碼:
.footer{
width : 20%
}
如果您轉換的值是一個帶有單位的值,那麼在編譯的時候會報錯誤信息:
>> percentage(2px / 10em)
SyntaxError: $value: 0.2px/em is not a unitless number for `percentage'