<ul class="g-flex">
<li>liA</li>
<li>liB</li>
<li>liC</li>
<li>liD</li>
<li>liE</li>
</ul>
.g-flex {
height: 200px;
box-sizing: border-box;
background: #037d65;
display: flex;
// display: flex-inline;
// justify-content: space-around;
}
li {
// align-self: center;
width: 100px;
text-align: center;
font-size: 18px;
color: #fff;
margin: auto;
margin-bottom: 0;
margin-top: auto;
}
li:nth-child(1) {
height: 100px;
background: #336699;
}
li:nth-child(2) {
height: 120px;
background: #669933;
}
li:nth-child(3) {
height: 140px;
background: #996633;
}
li:nth-child(4) {
height: 160px;
background: #229955;
}
li:nth-child(5) {
height: 180px;
background: #199652;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.