Showing bar chart from bottom to top

by Budhram Gurung

HTML

<div class="chart">
        <div style="height: 40px; width: 5px; padding-bottom: 0px">
            4</div>
        <div style="height: 80px; width: 5px;">
            8</div>
        <div style="height: 150px;">
            15</div>
        <div style="height: 160px;">
            16</div>
        <div style="height: 230px; width: 13px;">
            23</div>
        <div style="height: 420px;">
            42</div>
    </div>

CSS

.chart div {
    font: 10px sans-serif;
    background-color: steelblue;
    text-align: right;
    padding: 3px;
    margin: 1px;
    color: white;
    display: inline-block;
    vertical-align: bottom;
}