5

我正在尝试组合一个 flexbox 布局——出于这个问题的目的,我将其称为“方形五块”布局(见图)——但我遇到了麻烦,就像我尝试过的所有实验一样没有正确包装。

我已经看到使用浮点数完成相同的布局,但我希望能够稍微适应未来并使用更新的方法 - 因此是 flexbox。我试过搜索这种模式,但似乎没有一个一致的名称,所以找到类似的例子很困难。

我也在使用视口单位来确保块保持完美的正方形,所有这些都基于视口宽度(vw)单位。

div { width: 25vw; height: 25vw; }
div:first-of-type { width: 50vw; height: 50vw; }

主要特点是所有的块都应该是正方形的,但是第一个块应该是其余四个组合的大小。有没有人见过或工作过这样的布局?

使用 flexbox 的 5 块完美正方形网格; 第一个块应该是其余四个块的确切大小

谢谢!!

4

2 回答 2

5

嵌套的弹性盒可以与媒体查询结合使用。

带有媒体查询的 Codepen Demo

基本上:

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.parent {
  width: 100vw;
  display: flex;
}
.col {
  flex: 0 0 50vw;
  height: 50vw;
  background: blue;
}
.wrap {
  display: flex;
  flex-wrap: wrap
}
.box {
  flex: 0 0 25vw;
  height: 25vw;
}
.red {
  background: red;
}
.pink {
  background: pink;
}
.orange {
  background: orange;
}
.grey {
  background: grey;
}
<div class="parent">
  <div class="col"></div>
  <div class="col wrap">
    <div class="box red"></div>
    <div class="box pink"></div>
    <div class="box orange"></div>
    <div class="box grey"></div>
  </div>
</div>

于 2016-04-12T12:26:01.573 回答
2

请参阅下面的代码并展开结果。我用过弹性盒子

body {
  margin: 0;
  height: 100vh;
  width: 100vw;
}

.wrapper {
  height: 100%;
}

.layout.horizontal,
.layout.vertical {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}

.layout.horizontal {
  -ms-flex-direction: row;
  -webkit-flex-direction: row;
  flex-direction: row;
}

.layout.vertical {
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column;
}

.flex {
  -ms-flex: 1 1 0.000000001px;
  -webkit-flex: 1;
  flex: 1;
  -webkit-flex-basis: 0.000000001px;
  flex-basis: 0.000000001px;
}

.box {
  color: #fff;
  text-align: center;
}

.box.blue {
  background: #312783;
}

.box.green {
  background: #0B983A;
}

.box.yellow {
  background: #E1BD48;
}

.box.pink {
  background: #D2007F;
}

.box.orange {
  background: #EB6053;
}

@media all and (max-width: 768px) {
  .change-in-responsive.layout.horizontal {
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }
}
<div class="layout horizontal wrapper change-in-responsive">
  <div class="box large flex blue">1</div>
  <div class="flex layout vertical">
    <div class="flex layout horizontal">
      <div class="box green flex">2</div>
      <div class="box yellow flex">3</div>
    </div>
    <div class="flex layout horizontal">
      <div class="box pink flex">4</div>
      <div class="box orange flex">5</div>
    </div>
  </div>
</div>

于 2016-04-12T12:53:26.807 回答