标签:span 内容 出现 height title div ble tle esc
感觉ios的小程序每个页面都可以下拉出现白屏
有时页面带有滑动的属性会跟着晃动,体验不是很好
解决办法:
先禁止页面下拉
<config> { navigationBarTitleText: "购物车", disableScroll:true } </config>
这样的话页面整个都拉不动了,下面溢出的内容就拉不出来了,此时用overflow:scroll间接滑动
.content{ width:100%; height:600rpx; overflow-y: scroll; }
标签:span 内容 出现 height title div ble tle esc
原文地址:https://www.cnblogs.com/ll15888/p/11654288.html