My page currently has something a bit like the following, in order to put two images on each side of my page header-bar.
<div id="header" >
<div style="float:left" >
<img src="media/logo1.png"/>
</div>
<div style="float:right" >
<img src="media/logo2.png"/>
</div>
</div>
While this works on the left-right alignment, I can't find a good tweak to get both images aligned to the bottom of the parent <div>
. They seem to align to the top instead.
However I reckon this might be just the wrong approach to start with. Therefore all suggestions welcome on the best way to make it work - or better, how to arbitrarily force an image to a chosen corner of the parent <div>
.