現在、2 つのコンテナーがあり、これらのコンテナーの 1 つを他のコンテナーの下に配置したいと考えています。これらのコンテナのそれぞれに、この投稿のおかげで 2 つのサイド バイ サイド div があります: Is it possible to put two div elements side-by-side without using CSS float?
<div id="container">
<div class="one">testing one</div>
<div class="two">testing two</div>
</div>
<div id="container">
<div class="one">testing three</div>
<div class="two">testing four</div>
</div>
one&two、three&four を隣り合わせにしたいのですが、one&two を three&four の上に重ねて、2x2 グリッドを作成します。しかし、それはお互いの上に現れ続けます。
ありがとう