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