纯WXSS实现-小程序模块高度等于屏幕高度减固定值
直接上代码,相信有需要的朋友一看就懂
page{
height: 100%;
}
view {
height: -webkit-calc(100% - 100rpx) !important;
height: -moz-calc(100% - 100rpx) !important;
height: calc(100% - 100rpx) !important;
}