왼쪽 오른쪽 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>
문제는 올바른 자녀가 반응 적으로 행동하지 않는다는 것입니다. 구체적으로 래퍼의 높이를 채우고 싶습니다.
이것을 달성하는 방법?
그래, 래퍼의 높이는 어떤 이유로 사파리에 채워지지 않습니다 ... 크롬과 파이어 폭스는 높이를 설정 하여이 작업을 훌륭하게 수행합니다. 어린이의 경우 '100 %'
—
Pencilcheck
background-color
하위를 설정하거나align-items: center
랩퍼 를 설정 하여 이를 테스트 할 수 있습니다 .