Skip to main content
2 of 6
added 33 characters in body
Daniel
  • 9.6k
  • 6
  • 69
  • 94

Flexboxes can accomplish this by using align-items: flex-end; flex-direction: column; with display: flex; or display: inline-flex;

div#imageContainer { height: 160px; align-items: flex-end; display: flex; flex-direction: column; } 

CSS-Tricks has a good guide for flexboxes

Daniel
  • 9.6k
  • 6
  • 69
  • 94