htmlでcss flexboxを使用して3つのボックスを作成しましたが、Chromeは異なるサイズのボックスをレンダリングしています。異なる幅でレンダリングされた行のフレックス
ドラッグは、ブラウザの境界線は、ビューを小さくします。
ありがとうございました!
Codepen:https://codepen.io/labanino/pen/rGaNLP
body {
font-family: Arial;
font-size: 2rem;
text-transform: uppercase;
}
.flex {
height: 200px;
display: flex;
flex-direction: row;
}
.flex>section {
flex: 1 1 auto;
display: flex;
justify-content: center;
flex-direction: column;
text-align: center;
}
.flex>section:nth-child(1) {
background: brown;
margin-right: 20px;
border: 1px solid #999;
}
.flex>section:nth-child(2) {
background: pink;
margin-right: 20px;
border: 1px solid #999;
}
.flex>section:nth-child(3) {
background: green;
margin-right: 0;
border: 1px solid #999;
}
<div class="flex">
<section>Brown</section>
<section>Pink</section>
<section>Green</section>
</div>
非常に素晴らしい@Spartacus。説明ありがとう。 – Labanino