cover-view文字显示不全,padding无效
IOS 和安卓下 内嵌的cover-view组件定位为position:absolute时无法触发bindtap事件,
IOS下,外层设置为flex时,内层设置padding在IOS真机无效,大于等于8个字时内容显示不完整,最后一个字少了一两个像素。去掉flex时显示正常
模拟器效果:
IOS真机效果:

<cover-view class="pop_up_title"> <cover-view class="pop_up_maintitle">为您推荐热门国家 |
.pop_up_title { display: flex; font-size: 32rpx; color: #333; justify-content: center; padding-bottom: 25rpx;}.pop_up_maintitle { padding: 0 50rpx; background-color: red;}.pop_up_subtitle { font-size: 28rpx; color: #999; line-height: 40rpx; margin-left: 20rpx;} |
