我正在尝试使用 Twitter Bootstrap 3 制作两列全高布局。似乎Twitter Bootstrap 3不支持全高布局。我想做的事:
+-------------------------------------------------+
| Header |
+------------+------------------------------------+
| | |
| | |
|Navigation | Content |
| | |
| | |
| | |
| | |
| | |
| | |
+------------+------------------------------------+
如果内容增长,则nav
应该也增长。
- 每个父级的高度 100% 不起作用,因为存在内容为一行的情况。
position: absolute
似乎是错误的方式。display: table
并display: table-cell
解决了问题,但并不优雅。
HTML:
<div class="container">
<div class="row">
<div class="col-md-3"></div>
<div class="col-md-9"></div>
</div>
</div>
有没有办法使用默认的Twitter Bootstrap 3类来实现它?