We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
使用autoprefixer自动添加私有前缀,正则不太严谨,导致background-size被截断,剩下-webkit-...如下
-webkit-background-size: 1rem 1.12rem; background-size: 1rem 1.12rem; z-index: 10;
处理后变成了
-webkit- z-index: 10;
再压缩下变成
-webkit-z-index: 10;
刚开始以为是autoprefixer的问题,只要修改下libs\css\rules.js就好
The text was updated successfully, but these errors were encountered:
我也遇到了,处理办法是在postpackager阶段使用autoprefixer
Sorry, something went wrong.
@painty 其实你这个办法还不错
这个事情,待我把图片相关的东西搞定再来弄一下;
No branches or pull requests
使用autoprefixer自动添加私有前缀,正则不太严谨,导致background-size被截断,剩下-webkit-...如下
处理后变成了
再压缩下变成
刚开始以为是autoprefixer的问题,只要修改下libs\css\rules.js就好
The text was updated successfully, but these errors were encountered: