Bottom align
by Bacher
HTML
<div class="cont">
<div class="img"></div>
</div>
CSS
.cont {
height: 150px;
vertical-align: bottom;
}
.cont:after {
content: "";
display: inline-block;
height: 100%;
}
.img {
display: inline-block;
width: 100px;
height: 100px;
background: red;
}