我怎样才能用 Bootstrap 得到这个网格?

How could i get this grid with Boostrap?

我想要的是使用 Bootstrap 和 AngularJS

制作这个 divisions

我不知道如何做 divisions,我想将容器分成 3 列,每列 4。还想知道我是否可以将容器分成两部分6 列并重叠另一个 div 使 SECTOR 3?

这是我之前说的,但这并没有给我想要的。

<div class="container" contenteditable="false">
    <div class="col-md-6 text-center">
        <button class="btn btn-default">Button</button>
    </div>
    <div class="col-md-6 text-center">
        <button class="btn btn-default">Button</button>
    </div>
</div>

编辑 1

还想知道如何在智能手机上加载网站时获得这种响应能力。

Plunker

HTML:

<div class="container">
  <div class="content">
    <div class="content-body">
      <div class="section1 pull-left">section 1</div>
      <div class="section2 pull-right">section 2</div>
      <div class="section3">section 3</div>
    </div>
  </div>
</div>

CSS:

/* Reset */
html, body { height: 100%; margin: 0; padding: 0; }


.container { 
  display: table; 
  width: 100%; 
  height: 100%; 
}

.content { 
  display: table-row; 
  height: 100%; 
}

.content-body { 
  display: table-cell; 
}

.section1 {
  width: 50%;
  background: red;
  height: 100%;
  display:block;
}

.section2 {
  width: 50%;
  height: 50%;
  height: 100%;
  display: block;
  background: blue;
}

.section3 {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
  height: 50%;
  width: 50%;
  background: yellow;
}

对于响应式样式更改,您需要添加媒体查询:

@media (max-width: 768px) {
        .section3, .section2, .section1 {
            display:block;
            position: relative;

        }
        .section3 {
            height: 10%;
            width: 100%
        }
        .section2 {
            height:60%;
            width: 100%
        }
        .section1 {
            height: 30%;
            width: 100%
        }

    }