问题:在微信小程序中使用scroll-view标签时,用height:cale(xx - xx)设置高度无效,在page中设置高度为百分百依旧无效
解决办法:直接在父级view标签中设置高度为百分百即可
<view style="height:100%;">
<scroll-view class="scrollviewclass " scroll-y>
</scroll-view>
</view>
page {
height: 100%;
}
.scrollviewclass {
height: calc(100% - 44rpx);
}
网友评论