I am trying to align 2 images which are responsive in the center of the page.
I am using the .container class but still it is towards right.
I am trying to align 2 images which are responsive in the center of the page.
I am using the .container class but still it is towards right.
container class in bootstrap provides margin-left:% and margin-right-% so page looks beautiful,you need to use fluid-grid system to make it responsive For eg ,
`<div class="container">
<div class="col-sm-12 ">
<div class="col-sm-6"><img style="text-align:center" src=""/></div>
<div class="col-sm-6"><img style="text-align:center" src=""/></div>
</div>
</div>`