Is there a way to structure my CSS so that the text in "header-right" is aligned at the bottom, while keeping the image in "header-left" aligned at the top?
Below is my HTML code:
<div class="container">
<div class="header-left;">
<img src="img1.png">
</div>
<div class="header-right;">
<div style="float:left;">
This text should be at the bottom.
</div>
<div style="float:left;">
This text should be at the bottom also.
</div>
</div>
</div>
Thank you! :)