fixed子元素会滚动走位
发布于 6 年前 作者 xiuying18 16809 次浏览 来自 问答

<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 会随着页面滚动。

1 回复

如果 textarea 是在一个 position:fixed 的区域,需要显示指定属性 fixed 为 true

回到顶部