I used the following solution to float a inner-div (corner) to the top right corner of a outer-div (base). That works great.
CSS:
#base {width: 100px; height: 100px;}
#corner {float: right; width: 40px; height: 40px; margin: 0 0 15px 15px;}
HTML:
<div id="base">
<div id="corner">
<!--stuff inside corner-->
</div>
<!--other stuff inside base-->
</div>
Now I want to float the inner-div (corner) to the bottom of the outer base-div (bottom right), but I'm unable to find the correct css configuration. What do I have to change to reach my goal?
It's quite important, that the text of the base div floats the corner-div (as in the example above).