I'm trying to align 3 images along their bottom edge so it looks clean and even. I have 3 Images in a Div, and the Div is within a section. The section is positioned relative, with the Div positioned absolute, bottom: 0 so the images remain above the footer at the bottom of the page.
How do I get the bottom edge of the images to align as if on a flat line?
Note*:Ignore the inline styles, images are disproportioned so I had to inline style to fix them.
HMTL:
<section>
<div class="logo-footer">
<img style="width: 100px; margin-right: 40px" src="google.com/images/srpr/logo11w.png"/>
<img style="width: 500px; height: 75px; " src="google.com/images/srpr/logo11w.png"/>
<img style="width: 250px" src="google.com/images/srpr/logo11w.png"/>
</div>
</section>
CSS:
.logo-footer {
display: -webkit-flex;
display: flex;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-justify-content: center;
justify-content: center;
-webkit-align-self: center;
align-self: center;
height: 115px;
position: absolute;
bottom: 10px;
}
.logo-footer img{
margin: 0 50px;
}