重新布置用于移动视图的Flexbox布局

时间:2019-02-07 18:35:46

标签: html css css3 flexbox css-grid

我有4个使用Flexbox对齐的div。在桌面大小下,有3个等宽的列,第一个和最后一个div占据了容器的整个高度。第二个和第三个div垂直堆叠在中间,每个div占据高度的50%。很好。

在移动设备尺寸上,我希望最后一个div位于顶部并拉伸容器的整个宽度。然后,我希望第一个div在顶部div下方向左对齐,并占据容器宽度和剩余高度的50%。

我遇到的问题是我希望第二个和第三个div在顶部div的正下方对齐,并占用剩下的50%的宽度,但要垂直堆叠,以便每个都占剩下的高度的50%。 / p>

我尝试更改媒体查询中的flex-direction以及我能想到的其他所有功能,但无法正常工作。

* {
  margin: 0;
  padding: 0;
}

.box-wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  height: 70vh;
  align-items
}

.boxa {
  background: red;
  flex: 0 0 100%;
  width: 33%;
}

.boxb {
  background: orange;
}

.boxc {
  background: lightgreen;
}

.boxb,
.boxc {
  flex: 0 0 50%;
  width: 33%;
}

.boxd {
  background: grey;
  flex: 0 0 100%;
  width: 33%;
}

@media (max-width: 700px) {
  .boxa {
    order: 2;
    width: 50%;
    flex: 0 0 75%;
  }
  .boxb {
    order: 3;
    width: 50%;
    flex: 0 0 37.5%;
  }
  .boxc {
    order: 4;
    width: 50%;
    flex: 0 0 37.5%;
  }
  .boxd {
    order: 1;
    flex: 0 0 25%;
    width: 100%;
  }
}
<div class="box-wrapper">
  <div class="boxa"></div>
  <div class="boxb"></div>
  <div class="boxc"></div>
  <div class="boxd"></div>
</div>

1 个答案:

答案 0 :(得分:0)

使用flexbox很难实现所需的布局,因为flexbox不适合二维网格。它擅长于一维网格(将弹性项目放置在列中),但在二维网格中的容量有限(将弹性项目放置在行中)。

由于所需的布局涉及必须交叉行和列线的项目,因此flex不是最佳选择。使用CSS Grid,您的布局既简单又容易。

jsFiddle demo

.box-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;  /* 3 equal width columns */
  grid-template-rows: 1fr 1fr;         /* 2 equal height rows */
  height: 70vh;
  grid-column-gap: 5px;
  grid-row-gap: 5px;
  padding: 5px;
  grid-template-areas: " first second last " 
                       " first  third last ";
}

.boxa { grid-area: first; background: red; }
.boxb { grid-area: second; background: orange; }
.boxc { grid-area: third; background: lightgreen; }
.boxd { grid-area: last; background: grey; }

@media ( max-width: 700px) {
  .box-wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "  last   last  "
                         " first  second " 
                         " first   third ";
  }
}

* { margin: 0; padding: 0; }

/* for placing and styling numbers only */
.box-wrapper > div {
  font-size: 1.5em; display: flex; align-items: center; justify-content: center; }
<div class="box-wrapper">
  <div class="boxa">1</div>
  <div class="boxb">2</div>
  <div class="boxc">3</div>
  <div class="boxd">4</div>
</div>

更多信息: