Imagine you have this:
<div class="parent_with_height200px">
<div class="left">This is the left floated text, size 12px</div>
<div class="right">This is the right floated text, size 40px</div>
</div>
How can I make the two texts “stand” on the bottom of the parent div having their baseline aligned with each other?
It’s perfectly ok to change the css/html, it’s the result I want.
As feeela says, using position is how you will accomplish this.
See the output here: Example