如何使用 Twitter Bootstrap 创建 2 列流体固定布局
问题:
可以使用 Twitter Bootstrap 实现固定流体的两列布局吗?
解决方案:
是的,Bootstrap 2.0 以后可以实现,但需要进行一些修改标准类的实现。这是使用 HTML 和 CSS 的解决方案:
HTML:
<div class="container-fluid fill"> <div class="row-fluid"> <div class="fixed"> <!-- Fixed width div --> ... </div> <div class="hero-unit filler"> <!-- Filler div without spanX class --> ... </div> </div> </div>
CSS:
/* Fixed-fluid layout */ .fixed { width: 150px; float: left; } .fixed + div { margin-left: 150px; overflow: hidden; } /* Equal height columns (optional) */ html, body { height: 100%; } .fill { min-height: 100%; position: relative; } .filler:after{ background-color:inherit; bottom: 0; content: ""; height: auto; min-height: 100%; left: 0; margin:inherit; right: 0; position: absolute; top: 0; width: inherit; z-index: -1; }
说明:
以上是Bootstrap 可以创建固定和流动的列布局吗?的详细内容。更多信息请关注PHP中文网其他相关文章!