私はすでにこれについて簡単に調査しました。私はdivにimgを入れ、img幅を100%にしました。これは高さに影響を与えるはずです。私はここで何が起こっているのか分からない。次のフレックスボックスで適切なアスペクト比を維持するためにイメージが必要です。 CSSでの画像のためのフレックスボックスでのイメージの高さの伸び
.container {
display: flex;
position: relative;
flex-flow: row wrap;
justify-content: center;
align-items: stretch;
height: 100vh;
width: 80%;
/*padding-top: 2%;
\t padding-bottom: 18%;
margin: 5% auto 8% auto; */
background-color: white;
border: 2px solid red;
}
.top {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
border: 2px solid blue;
}
.top * {
1 1 50%;
display: flex;
flex-flow: row wrap;
justify-content: center;
align-content: center;
height: 100%;
}
.bottom {
display: flex;
flex-flow: row wrap;
justify-content: space-around;
align-items: flex-start;
border: 2px solid orange;
}
.top,
.bottom {
flex: 0 0 100%;
height: 50%;
}
.topa {
display: flex;
flex-flow: row wrap;
justify-content: center;
align-items: center;
align-content: center;
width: 50%;
height: 100%;
background-color: orange;
}
.topa div img {
width: 100%;
}
<div id="bigwrap">
<div class="container">
<div class="top">
<div class="topa">
<div>
<img src="http://placehold.it/209x205" width="209" height="205" alt="Picture of kid" />
</div>
<div>
<img src="http://placehold.it/209x205" width="209" height="205" alt="Picture of kid" />
</div>
</div>
<div class="topb">
</div>
</div>
<div class="bottom">
</div>
</div>
</div>
どのように機能するか非常にWEEL説明するcss-tricks articleです...あなたは
.topa
上margin:auto
が十分にあるやりたいです私たちは問題が何であるかを見ることができました。現在の内容や実際のレイアウトの詳細については、詳細をご記入ください。 –プレースホルダ画像が使用されるように質問を更新しましたが、達成しようとしていることはまだわかりません。あなたは虚偽のフレックス表示で多くの要素をラッピングしていますが、私はそれが必要でないかもしれないと信じています。意図したレイアウトを表示するためのスクリーンショットを含めることはできますか? – Terry