Bootstrap网格对齐的问题

时间:2015-11-01 15:54:38

标签: twitter-bootstrap grid-system

layout

我需要这个布局(见图),我尝试了很多,但没有任何作用..这是我的代码:

from __future__ import absolute_imports

1 个答案:

答案 0 :(得分:0)

结帐this fiddle

<div class="container">

  <div class="row ">

    <div class="col-xs-6">
      <div class="col-xs-12" style="background: green; height: 60px;">Aaa</div>
      <div class="col-xs-12" style="background: red; height: 60px;">Bbb</div>
    </div>
      <div class="col-xs-6" style="background: blue; height: 120px;">Bbb</div>

  </div>  

</div>