/* #ifndef MP */
.foot-hight-view {
width: 100%;
height: calc((env(safe-area-inset-bottom) / 2) + 109.09rpx);
}
/ #endif /
这种写法,打包成小程序。在小程序的wxss文件生效了。
/* #ifndef MP */
.foot-hight-view {
width: 100%;
height: calc((env(safe-area-inset-bottom) / 2) + 109.09rpx);
}
/ #endif /
这种写法,打包成小程序。在小程序的wxss文件生效了。
2 个回复
mirsly (作者)
/ #ifndef MP /
.foot-hight-view {
width: 100%;
height: calc((env(safe-area-inset-bottom) / 2) + 109.09rpx);
}
/ #endif /
为什么会吃字。
1***@qq.com
/ #ifndef MP / 这个里面的就会在 小程序里生效啊
mirsly (作者)
我是#ifndef MP 不是#ifdef MP
2020-08-26 08:22