Less中使用calc()函数编译后错误 在less中使用calc()计算元素宽度 ```less #lic-notice { width: calc(100% - 200px); height: auto; z-index: 999; } ``` 样式被编译后宽度错误显示`wid ...
Vue 深度选择器/deep/报警告:/deep/ combinator is no longer supported in CSS dynamic profile. vue开发中控制台警告: /deep/ combinator is no longer supported in CSS dynamic profile. 应该是/deep/ 在将来会被移除 解决方案: ``` .a >>> .b { } ...