iphoneX上overflow:hidden失效,怎么解决?
//home.wxml
<scroll-view scroll-x="true" class="boxs">
<view class="box">
<view>
<image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image>
<view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特 Narilya Gulmongkolpech</view>
</view>
</view>
<view class="box">
<view>
<image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image>
<view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉</view>
</view>
</view>
<view class="box">
<view>
<image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image>
<view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特</view>
</view>
</view>
<view class="box">
<view>
<image style="width: 200rpx;" src="../../images/p2669942342.jpg"></image>
<view style="white-space: normal;width: 200rpx; height: 200rpx;">纳瑞拉·库尔蒙科尔佩特 Narilya Gulmongkolpech</view>
</view>
</view>
</scroll-view>
//home.wxss
.boxs{
width: 100%;
white-space: nowrap;
}
.boxs .box{
overflow: hidden !important;
display: inline-block;
}
//微信开发工具模拟器效果
[图片] //iphoneX上的效果
[图片]