引导左侧两行,右侧一行

问题描述 投票:0回答:2

我想使用引导网格系统创建类似的东西:

enter image description here

但我似乎无法将 COLUMN1 和 COLUMN2 依次放置而不在它们之间产生间隙(由于第 3 列的高度):

enter image description here

这是我尝试过的代码示例(不允许我发布完整的实际代码):

<div class="row">

    <div id="header" class="col-md-4">
        COLUMN 1
    </div>


    <div class="col-md-8" style="background:url('poze/power.jpg'); height:300px">
        COLUMN 3
    </div>
</div>

<div class="row" id="row_cont">

    <div class="col-md-4">
       COLUMN 2
     </div>
...all the rest
</div>
javascript twitter-bootstrap
2个回答
10
投票

我想这就是你所需要的。单击整页查看结果。

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>

  <div class="row">
    <div class="col-md-4">
      <div style="background:red; height:100px">Column 1</div>
      <div style="background:blue; height:200px">Column 2</div>
    </div>
    <div class="col-md-8" style="background:yellow; height:300px">Column 3</div>
  </div>


0
投票

<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.2/css/bootstrap.min.css" rel="stylesheet"/>

  <div class="row">
    <div class="col-md-4">
      <div style="background:red; height:100px">Column 1</div>
      <div style="background:blue; height:200px">Column 2</div>
    </div>
    <div class="col-md-8" style="background:yellow; height:300px">Column 3</div>
  </div>

© www.soinside.com 2019 - 2024. All rights reserved.