fixed子元素会滚动走位
<view class=‘sendPost’>
<textarea placeholder=‘发表评论’></textarea>
</view>
.sendPost{
background-color: #bac0c0;
position: fixed;
bottom: 0;
left: 0;
width: 100%;
z-index: 99999;
}
.sendPost textarea{
background-color: #f33;
height: 80rpx;
}
开发工具里正常。但是在手机里发现textarea 会随着页面滚动。