我有一些非常基本的代码,它可以工作,除了所有内容都与顶部对齐......理想情况下,条形将与底部对齐。我想我可以使用固定定位,因为尺寸是 50 像素乘 50 像素的平方,但我更喜欢不那么“固定”的东西。
<div style="border: 1px solid #aeaeae; background-color: #eaeaea; width: 50px; height: 50px;">
<div style="position: relative; bottom: 0; float: left; width: 8px; height: 22px; background-color: #aeaeae; margin: 1px;"></div>
<div style="position: relative; bottom: 0; float: left; width: 8px; height: 11px; background-color: #aeaeae; margin: 1px;"></div>
<div style="position: relative; bottom: 0; float: left; width: 8px; height: 6px; background-color: #aeaeae; margin: 1px;"></div>
<div style="position: relative; bottom: 0; float: left; width: 8px; height: 49px; background-color: #aeaeae; margin: 1px;"></div>
<div style="position: relative; bottom: 0; float: left; width: 8px; height: 28px; background-color: #aeaeae; margin: 1px;"></div>
</div>
我不想使用库或 JS 插件。保持这种轻量级是关键任务。
此外,我更喜欢这些条是垂直的。有任何 CSS 大师关心我似乎缺少的一点点吗?我用谷歌搜索过,大多数例子都非常复杂/复杂,