我正在尝试在Flexbox中填充Flex项目的垂直空间。
.container {
height: 200px;
width: 500px;
display: flex;
flex-direction: row;
}
.flex-1 {
width: 100px;
background-color: blue;
}
.flex-2 {
position: relative;
flex: 1;
background-color: red;
}
.flex-2-child {
height: 100%;
width: 100%;
background-color: green;
}
<div class="container">
<div class="flex-1"></div>
<div class="flex-2">
<div class="flex-2-child"></div>
</div>
</div>
这是JSFiddle
flex-2-child
不能满足要求的高度,但以下两种情况除外:
flex-2
的高度为100%(这很奇怪,因为弹性项默认情况下为100%,而且在Chrome中存在错误)flex-2-child
绝对位置也不方便
目前,该功能不适用于Chrome或Firefox。
height:100%
但它们却以自然高度进行渲染。奇怪的是,如果我将它们的高度更改为auto
,则它们的渲染height:100%
就像我尝试做的那样。如果那是应该的,那肯定不是直观的。