ブレイクポイントに達したら1枚目から2枚目のようにしたいです。
私のコードでは3枚目の画像のようにAとCの間ができてしまいます。
<body> <div class="container"> <div class="A">A</div> <div class="B">B</div> <div class="C">C</div> </div> </body>
.container { display: flex; flex-wrap: wrap; width: 60%; text-align: center; margin: 0 auto; } .inner { flex: 0 0 200px; } .A, .B, .C { flex: 0 0 200px; font-size: 20px; font-weight: bold; } .A { background: red; height: 200px; } .B { background: yellow; height: 400px; } .C { background: green; height: 300px; }
回答2件
あなたの回答
tips
プレビュー