javascript-Textarea始终具有窗口高度
作者:互联网
我不确定该怎么做. II目前正在使用Bootstrap的textarea及其容器.我不知道如何使文本区域扩展到屏幕底部,该区域会根据窗口高度自动增加/减少.我试过了:
#form-control {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
}
但是似乎没有什么改变.有人知道我该怎么做吗?
编辑:
这是我的html文件:
<body>
<div class="container">
<div class="form-group">
<textarea class="form-control" rows="15" id="note"></textarea>
</div>
</div>
</body>
解决方法:
您必须像下面的代码一样在元素上放置height属性.
#form-control {
position:fixed;
top:0;
left:0;
right:0;
bottom:0;
height:50px;
}
如果不起作用,请尝试!important.如果还是不行,请尝试在标记中设置行并在CSS上设置line-height.
<textarea rows="4">
标签:twitter-bootstrap,twitter-bootstrap-3,css,javascript,jquery 来源: https://codeday.me/bug/20191118/2031647.html