我正在創建兩個水平條,如下面的示例所示,僅使用html和css。我使用下面的代碼:使用div創建垂直條
<div style="height: 150px;">
<div style="width: 55px;float:left;">
<div>340.8</div>
<div style="background-color:#95111d; height: 75px;">
</div>
</div>
<div style="width:55px;float:left">
<div>340.8</div>
<div style="background-color:#9e9e9e; height: 115px;">
</div>
</div>
<br style="clear: both" />
</div>
的問題,這是兩個酒吧都坐在自己包含分區的頂部,而不是在底部,所以你得到以下圖片效果的第2位。
我有一些代碼將生成這些酒吧的高度,所以我不能只是添加頂部填充/保證金推入他們的位置。有沒有辦法做到這一點,而不訴諸於JavaScript來計算保證金和底部對齊他們?