Is there a way to achieve this layout using Bootstrap?
I am looking to create a div with an image on the left (float:left) and text (which could be one or multiple lines) along with a button aligned to the bottom right. The goal is to have the button consistently positioned in that spot regardless of the length of the text.
Thank you for any assistance (apologies for any language errors)
edit : I have used the following HTML code with Bootstrap v3.3.7 (CSS)
<div class="col-lg-6" style="text-align: right; ">
<img src="http://placehold.it/150x150" class="pull-right">
<h1>Ipsum</h1>
<p><b>Ipsum dolor</b></p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis quidem voluptatibus consequatur
</p>
<button>consectetur</button>
</div>
<div class="col-lg-6" style="text-align: left; ">
<img src="http://placehold.it/150x150" class="pull-left">
<h1>Dolor</h1>
<p><b>Dotum dolor</b></p>
<p>
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Blanditiis quidem voluptatibus consequatur
</p>
<button>consectetur</button>
</div>
</div>