如何使用孩子的最大高度限制流体行高度的CSS布局?

时间:2019-11-13 09:31:14

标签: css layout responsive-design

布局:

有一个容器可以填充窗口高度的100%。在其中有两个.parent框(红色填充),其中包含.child个元素(黄色填充)。子元素设置了min-heightmax-height

html,
body {
    height: 100%;
    margin: 0;
}

.container {
    display: grid;
    height: 100%;
    gap: 20px;
}

.parent {
    background: #f00;
}

.nested {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.child {
    height: 100%;
    min-height: 100px;
    max-height: 150px;

    background: #ff0;
}

.another-child {
    flex: none;
    height: 50px;

    background: #0f0;
}
<div class="container">
  <div class="parent">
    <div class="child"></div>
  </div>
  <div class="parent">
    <div class="nested">
      <div class="another-child"></div>
      <div class="child"></div>
    </div>
  </div>
</div>

目标:

.parent框仅在子元素max-height内垂直增长,直到.container内有空间,然后缩小到min-height。父块红色背景应该不可见。

0 个答案:

没有答案