You can show your images in different layout styles.
By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.
1 2 3 4 5 6 7 8 9 10 11 12 13 14
<p>By default, Bootstrap's thumbnails are designed to showcase linked images with minimal required markup.</p> <div class="row"> <div class="col-md-4"> <img class="img-responsive img-rounded mb-lg" src="/portals/2/img/projects/project.jpg" alt="Project Image" /> </div> <div class="col-md-4"> <img class="img-responsive img-circle mb-lg" src="/portals/2/img/projects/project-1.jpg" alt="Project Image" /> </div> <div class="col-md-4"> <span class="img-thumbnail"> <img class="img-responsive" src="/portals/2/img/projects/project-2.jpg" alt="Project Image" /> </span> </div> </div>
The thumbnail details can be displayed in different styles.