Calc在less中不能正常使用
Less中编写:
.content_bottom {
height: 56px;
calc(100% - 250px);
-moz-calc(100% - 250px);
-webkit-calc(100% - 250px);
}
Less中编译:
.content_bottom {
height: 56px;
calc(-150%);
}
改成:
Less中编写:
.content_bottom {
height: 56px;
calc(~"100% - 250px");
-moz-calc(~"100% - 250px");
-webkit-calc(~"100% - 250px");
}
Less中编译:
.content_bottom {
height: 56px;
calc(100% - 250px);
-moz-calc(100% - 250px);
-webkit-calc(100% - 250px);
}