我有一个左右Flexbox:
.wrapper {
display: flex;
flex-direction: row;
align-items: stretch;
width: 100%;
height: 70vh;
min-height: 325px;
max-height:570px;
}
<div class="wrapper">
<div class="left">Left</div>
<div class="right">Right</div>
</div>
问题在于正确的孩子没有做出反应。具体来说,我希望它填充包装纸的高度。
如何做到这一点?
是的,出于某些原因,未在野生动物园中填充包装纸的高度... chrome和Firefox通过设置高度来很好地做到这一点:儿童中的'100%'
—
Pencilcheck
background-color
为儿童设置或align-items: center
在包装器中进行设置来进行测试。