遇到一個小問題,記錄一下小程序
問題:在微信小程序中使用scroll-view標籤時,用height:cale(xx - xx)設置高度無效,在page中設置高度爲百分百依舊無效微信小程序
解決辦法:直接在父級view標籤中設置高度爲百分百便可微信
<view style="height:100%;">
<!-- 視頻列表 --> <scroll-view class="videoList" scroll-y> </scroll-view> </view>
page { height: 100%; } .videoList { height: calc(100% - 480rpx); }