解决方法
不幸的是,recent specs中不再提及mod运算符.
The calc() function allows mathematical expressions with addition (+),subtraction (-),multiplication (*),and division (/) to be used as component values.
您可能希望使用javascript来实现此类行为.
var el = document.getElementById('element-id'); el.style.width = (100 % 5) + '%';