Bootstrap 3 全高列:自定义 CSS 解决方案
简介:
创建Twitter Bootstrap 3 的全高布局可能具有挑战性。虽然 Bootstrap 的原生类不支持此功能,但可以使用自定义 CSS 来实现此效果。
自定义 CSS 方法:
标记:
<header>Header</header> <div class="container"> <div class="row"> <div class="col-md-3 no-float">Navigation</div> <div class="col-md-9 no-float">Content</div> </div> </div>
CSS:
html, body, .container { height: 100%; } .container { display: table; width: 100%; margin-top: -50px; padding: 50px 0 0 0; } .row { height: 100%; display: table-row; } .row .no-float { display: table-cell; float: none; }
优点和注意事项:
以上是如何使用自定义 CSS 在 Bootstrap 3 中创建全高列?的详细内容。更多信息请关注PHP中文网其他相关文章!