我正在尝试使用twitter bootstrap 3 进行两列全高布局。似乎twitter bootstrap 3不支持全高布局。我想做的事:
+-------------------------------------------------+
| Header |
+------------+------------------------------------+
| | |
| | |
|Navigation | Content |
| | |
| | |
| | |
| | |
| | |
| | |
+------------+------------------------------------+
如果内容增加,则导航也应增加。
- 每个父母的身高100%无效,因为在某些情况下内容为一行。
- 绝对位置似乎是错误的方法
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类一起使用?
在尝试了此处提供的代码之后:引导程序教程
这是使用最新的Bootstrap v3.0.2的另一种选择:
标记:
其他CSS:
样本JSFiddle
希望这对任何有兴趣的人有所帮助。