Just starting out with bootstrap and I'm having some trouble with aligning my images. I have 3 images side by side, but there seems to be a margin between them. Here is the image
I want the images to be adjacent with no margins. The center image is 1200x400 in size, while the left and right images are both 600x400. I've applied the img-responsive
class. What could be causing this issue?
Here's the code snippet:
<div class="container">
<div class="row">
<div class="col-sm-3">
<asp:Image CssClass="img-responsive" ImageUrl="images/right.jpeg" runat="server" />
</div>
<div class="col-sm-6">
<asp:Image CssClass="img-responsive" ImageUrl="images/center1.jpg" runat="server" />
</div>
<div class="col-sm-3">
<asp:Image CssClass="img-responsive" ImageUrl="images/right.jpeg" runat="server" />
</div>
</div>
</div>
Furthermore, it appears that the pictures aren't vertically aligned properly in the illustration. Any suggestions on how to correct this alignment issue would be greatly appreciated.
Thank you!