我正在PHP中構建一個放樣的條形圖。我需要它看起來像這樣:在容器底部定位堆疊的div div
目前我能夠堆疊起來的灰色和紅色值,但他們在.graph容器的頂部。我如何在底部對齊它們?我嘗試了垂直對齊:底部,但它並沒有真正的工作。
<div class="graph">
<div class="bar">
<div class="views" style="height:'.$showViews.'px"></div>
<div class="actions" style="height:'.$showActions.'px"></div>
</div>
</div>
和CSS
.graph {
width: 200px;
height: 32px;
border-top: 1px solid #f5f5f5;
border-bottom: 1px solid #ccc;
background-color: #f5f5f5;
}
.graph .bar {
width: 10px;
float: left;
margin: 0 1px;
height:30
}
.graph .bar .views {
background-color: #ccc
}
.graph .bar .actions {
background-color: red
}
謝謝。
HTML是不是真的意味着準確的介紹,也許是一個基於SVG的解決方案會更容易? – nishantjr
.graph .bar {position:absolute; bottom:0;} ;. graph {position:relative; }? – nishantjr