vscode less自动转css
vscode搜索less安装easyLess插件
less除法编译有问题
// 750/100vw
@p:7.5vw;
.good2 {
margin-top: 10px;
width: 300/@p; // 这种写法不行,需要加上括号
height: (400/@p); // 这种写法是正确的
background: blue;
}
参考链接:
https://blog.csdn.net/zhai_865327/article/details/88822756
https://blog.csdn.net/weixin_44198965/article/details/89923890
https://blog.csdn.net/weixin_39411655/article/details/113460204
网友评论