左右のフレックスボックスがあります:
.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は、height: '100%' in the children
—
Pencilcheck
background-color
、子供向けに設定align-items: center
するか、ラッパーで設定します。