我已经使用 CSS 创建了一个图表,但我在内部 div(条形类)方面遇到了一些问题。内部 div 之间有空格。我尝试过使用 float: left。它可以删除空格,但内部 div 不与外部 div(图形类)的底部相邻。
这是一个示例链接(仍然没有删除空格):http
://dabblet.com/gist/2779082
谢谢
HTML
<div class="graph">
<div style="height: 22px;" class="bar"></div>
<div style="height: 11px;" class="bar"></div>
<div style="height: 6px;" class="bar"></div>
<div style="height: 49px;" class="bar"></div>
<div style="height: 28px;" class="bar"></div>
</div>
CSS
.graph {
width: 50px;
height: 50px;
border: 1px solid #aeaeae;
background-color: #eaeaea;
}
.bar {
width: 8px;
margin: 1px;
display: inline-block;
position: relative;
background-color: #aeaeae;
vertical-align: baseline;
}