I'm having a lot of trouble finding a solution for floating an element to the bottom-right of a div.
It's dynamically aligned (both the div and the button). I need text to be able to wrap around the button, and the button to stick to the bottom right corner of a div.
I'm looking for anything, be it pure CSS or with some Javascript mixed in to get this functionality.
Basically:
<div class='container'>
<p class='text-left'>Dynamic text area</p>
<a class='btn'>Click Here!</a>
</div>
I need the .btn (also dynamic, may be one to three lines of text in it, width is set to 110px) to be floated to the right and sit on the bottom, and the text to wrap around the button (which throws absolute/fixed positioning out the window).
This has been marked as a duplicate, but there is no answer in that question that specifically solves this problem, as they all assume a fixed height.