While I've seen similar questions about aligning divs in a row, my situation has a slightly different twist. I have three divs that I want aligned horizontally, with their content pushed to the bottom. I've attempted using position: relative and position: absolute with bottom: 0, but no luck.
Below is the CSS code along with some images for clarification:
.topAlbums {
border: 2px solid black;
overflow: hidden;
}
.album0 {
width: 33%;
padding-right: 20px;
float: left;
border: 2px solid blue;
padding-bottom: 500em;
margin-bottom: -500em;
}
.album1 {
width: 33%;
padding-right: 20px;
float: left;
border: 2px solid blue;
padding-bottom: 500em;
margin-bottom: -500em;
}
.album2 {
width: 33%;
padding-right: 20px;
float: left;
border: 2px solid blue;
padding-bottom: 500em;
margin-bottom: -500em;
}