I have 3 images that i want to center horizontally inside a div,so they need to be centered and next to each other.
here is my code:
<div class="container">
<div class="row">
<div class="col-xs-4 col-xs-offset-4" >
<img class="img-responsive " src="images/slike/pic1.png" alt=""/>
<img class="img-responsive " src="images/slike/pic2.png" alt=""/>
<img class="img-responsive " src="images/slike/pic3.png" alt=""/>
</div>
</div>
</div>
When i try center-block class the images are centered but not horizontal but vertical,when i try pull-left or right they are horizontal but not centered.What needs to be done?