uni-app 不支持css中的*全选选择器解决方法
2019-11-28 本文已影响0人
Bior
在小程序和App平台是不允许使用通配选择器的
但是有其他解决方法:
原始样式:
*{
box-sizing: border-box
}
替代样式:
:not(not) {
box-sizing: border-box
}
在小程序和App平台是不允许使用通配选择器的
但是有其他解决方法:
原始样式:
*{
box-sizing: border-box
}
替代样式:
:not(not) {
box-sizing: border-box
}