Is there a way to display items on a page from bottom to top, similar to how messages are shown in a chat? Here's an example:
.chart div {
font: 10px sans-serif;
background-color: steelblue;
padding: 3px;
margin: 1px;
color: white;
display: inline-block;
vertical-align: bottom;
}
<div class="chart">
<div style="height: 10px; width: 100%; ">
10</div>
<div style="height: 15px; width: 100%; ">
15</div>
<div style="height: 20px; width: 100%; ">
20</div>
<div style="height: 25px; width: 100%; ">
25</div>
<div style="height: 30px; width: 100%; ">
30</div>
</div>
Is there a way to achieve this effect using CSS?
Thank you for your help.