Is there a way in bootstrap to have:
So I would like text and the image to be in the center of the page. On the right to be the text right aligned and on the left to be the image I've tried with divs and then with table without success.
I've tried with :
<img src="your-image/path-here.jpg" class="img-responsive center-block" />
My code:
<div class="container">
<div class="row">
<div class="col-md-12">
<img style='float:left;width:200px;height:200px; margin-right:10px;' src="img/bootstrap.jpg" />
<p>Bootstrap, a sleek, intuitive, and powerful mobile first front-end framework for faster and easier web development.</p>
</div>
</div>
Edit The text should be aligned in the middle of the image and both should be in the center.