关于textarea在fixed定位中文字出框的问题
- 当前 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 : 10 rpx; margin-bottom : 10 rpx; border : 1px blue solid ; border-radius: 20 rpx; } |