以下のコードを実行して、画面の中央に 3 つの列を作成しています。私が抱えている問題は、各スパンにさまざまな量のコンテンツを追加すると、1 つが他の 2 つよりもはるかに高くなることです。メイン ページの背景は黒で、各スパンは白です。
<div style="width:100%; text-align:center; min-width:1200px;">
<span style="display: inline-block; width:300px; height:300px; background-color:#fff; ">
Content
</span>
<span style="display: inline-block; width:300px; height:300px; background-color:#fff;">
Content
</span>
<span style="display: inline-block; width:300px; height:300px; background-color:#fff; margin:0px; padding:0px;">
Content blah blah blah
</span>
</div>
すべてのスパンが同じ垂直位置になるようにするにはどうすればよいですか。高さをすべて同じ値に設定しました