关于textarea在fixed定位中文字出框的问题
发布于 6 年前 作者 asun 11873 次浏览 来自 问答
  • 当前 Bug 的表现(可附上截图)
  • 预期表现

窗口底部用 position:fixed; 固定了一个评论框,点击textarea键盘拉起后,输入文字超出两行后文字就开始错位上面出现空白,下面的文字被覆盖,请问如何解决?

wxml:

<view id='footer'>
        <textarea placeholder='回复...' cursor-spacing="10" auto-height fixed show-confirm-bar="false"></textarea>
</view>

wxss:

#footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: white;
    border: 1px solid gray;
}
#footer textarea{
    margin-top: 10rpx;
    margin-bottom: 10rpx;
    border: 1px blue solid;
    border-radius: 20rpx;
}
1 回复

麻烦更新一下微信版本重新尝试

回到顶部