images grid bootstrap code example
Example 1: img class bootstrap
<img src="cinqueterre.jpg" class="img-circle" alt="Cinque Terre">
<img src="cinqueterre.jpg" class="img-rounded" alt="Cinque Terre">
<img src="cinqueterre.jpg" class="img-thumbnail" alt="Cinque Terre">
Example 2: background image for div in grid system bootstrap
.img {
margin-right: -15px; // Remove right gap
margin-left: -15px; // Remove left gap
padding-bottom: 62.5%; // ratio is 16:10
background-position: 50% 50%;
background-repeat: no-repeat;
background-size: cover;
}