textarea的fixed属性失效

发布于 6 年前作者 hhan8636 次浏览最后编辑 6 年前来自 ask
  • 当前 Bug 的表现(可附上截图)

包裹在 position:fixed; 下的 textarea,添加 fixed 属性后在真机上不会显示 placeholder 又或者滚动时不会跟着textarea一起滚动,而是留在原来的位置上,具体看代码片段

  • 预期表现

  • 复现路径

  • 提供一个最简复现 Demo

代码片段:https://developers.weixin.qq.com/s/eye0P8mW7p8b

1 回复
nxu
nxu1 楼4 年前

body的样式改成这样试下

.body {

position: fixed;

z-index: 10;

bottom: 0;

left: 0;

width: 100%;

/* height: 100%; */

overflow: auto;

}