• 周日. 10 月 6th, 2024

5G编程聚合网

5G时代下一个聚合的编程学习网

热门标签

calc在less中不能正常使用

admin

11 月 28, 2021

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);

}

发表回复