我正在尝试使用bootstrap
在div中添加一堆元素我有类似
的东西<div class="row">
<div class="col-xs-8">
//contents
</div>
<div id="forms" class="col-xs-4">
<div class="title">My first app</div> //no stretch
<div class="form-group"> //stretch to the edge
//contents
</div>
<div class="form-group"> //stretch to the edge
//contents
</div>
</div>
</div>
我的问题是表单组有默认margin-left:-15px
和margin-right:-15px
css。所以表单看起来如此伸展到forms
div的边缘。
我可以手动设置margin:0
来覆盖这些表单的css,但我不确定这是否是bootstrap
中的最佳做法。任何人都可以帮我吗?谢谢!
答案 0 :(得分:0)
使用容器类
自举:
当你跳过一个lvl时,你最有可能陷入边缘 http://www.w3schools.com/bootstrap/bootstrap_grid_system.asp
<div class="container">
<div class="row">
<div class="col-xs-8">
//contents
</div>
<div id="forms" class="col-xs-4">
<div class="title">My first app</div> //no stretch
<div class="form-group"> //stretch to the edge
//contents
</div>
<div class="form-group"> //stretch to the edge
//contents
</div>
</div>
</div>
</div>