正常写法
div{
width: calc(100% - 30px);
}
less 写法
div{
width: calc(~"100% - 30px");
}
less 变量写法
@myHeight: 30px;
div{
height: calc(~"100% - @{myHeight}");
}
正常写法
div{
width: calc(100% - 30px);
}
less 写法
div{
width: calc(~"100% - 30px");
}
less 变量写法
@myHeight: 30px;
div{
height: calc(~"100% - @{myHeight}");
}
本文标题:less中使用calc
本文链接:https://www.haomeiwen.com/subject/zmyvgqtx.html
网友评论