我想设置一个textarea为100%的高度.我使用
Bootstrap 3,但找不到一个选项.
<div class="container"> <textarea class="form-control" rows="8"></textarea> </div>
怎么做?
解决方法
html,body,.container { height: 100%; } textarea.form-control { height: 100%; }