how can i do something like this with bootstrap
i want have an div, that have in the left an image (float:left) and a text (that can have one or two or more line) and in the bottom right an button but i want align button all time in this position (dont care about div had one,two or more line text)
thx for any help (sorry for bad english)
edit : i use this html code and 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>
This is not possible with pure Bootstrap 3.3.7 classes. Bootstrap use floating, but you need to use flex box model here.
Here is a possible Flexbox Model solution:
Here my vanilla css: