Flexbox垂直填充可用空间

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

现在在flexbox排我可以写

<div layout="row">
  <div>some content</div>
  <div flex></div> <!-- fills/grows available space -->
  <div>another content</div>
</div>

我希望实现相同但垂直,就像在这张图片上enter image description here目前问题是需要增长的div没有任何高度,因此两个内容相互低于。我希望我的第二个内容位于具有固定高度的父容器的底部!

我知道我可以通过定位第二个内容绝对和bottom: 0;来解决这个问题,但我能用flexbox实现这个目标吗?

html css css3 flexbox
2个回答
35
投票

所以你可以尝试这个:

  1. flex-direction: column用于柔性容器。
  2. flex: 1表示需要填充剩余空间的元素。

请参阅下面的演示,其中flexbox跨越视口高度:

body {
  margin: 0;
}
*{
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-direction: column;
  height: 100vh;
}
.flex {
  flex: 1;
}
.row, .row > * {
  border: 1px solid;
}
<div class="row">
  <div>some content</div>
  <div class="flex">This fills the available space</div>
  <!-- fills/grows available space -->
  <div>another content</div>
</div>

干杯!


15
投票

你只需要在父级上使用flex-direction: column,在中间div上使用flex: 1

body,
html {
  padding: 0;
  margin: 0;
}
.row {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.row > div:not(.flex) {
  background: #676EE0;
}
.flex {
  flex: 1;
  background: #67E079;
}
<div class="row">
  <div>some content</div>
  <div class="flex"></div>
  <!-- fills/grows available space -->
  <div>another content</div>
</div>
© www.soinside.com 2019 - 2024. All rights reserved.