如何使我的divs与bootstrap中心

时间:2014-06-18 18:49:44

标签: html css twitter-bootstrap twitter-bootstrap-3

我试图用引导程序将我的div放在中心

HTML

 <div id="wrapper" class="container-fluid row">
        <div id="left" class="col-lg-4 col-md-4 col-sm-4 col-xs-4">
            //stuff
        </div>
        <div id="right" class="col-lg-8 col-md-8 col-sm-8 col-xs-8">
            //stuff
        </div>
    </div>

显示

 ----------------------------
|                            |
||left  | |       right      |
||      | |                  |
||      | |                  |
|
|

我想要

 ----------------------------
|
|     |left|  |  right  |
|     |    |  |         | 
|
|

LeftRight div始终位于wrapper内。

仅使用bootstrap类的最佳方法是什么?

1 个答案:

答案 0 :(得分:1)

通过使用偏移

这样
 <div class="container-fluid">
  <div class="row">
    <div class="col-md-offset-4 col-md-4">this div</div>
    <div class="col-md-3">the other div</div>
</div>
</div>

http://www.bootply.com/m4mREVEntv#