[Solved] Custom thumbnail grid 3 columns? [closed]


like this? or you want the image fill the div?:

<div class="col-md-4 no-pad">
  <img class="img-responsive" src="https://placehold.it/1280x640/eee">
</div>
<div class="col-md-4 no-pad">
 <img class="img-responsive" src="https://placehold.it/1280x640/eee">
</div>
<div class="col-md-4 no-pad">
  <img class="img-responsive" src="https://placehold.it/1280x640/eee">
</div>

.no-pad{
        padding-left:0px;
        padding-right:0px;
        height:381px;
}

.no-pad img{
        width:100%;
        height:100%;
}

3

solved Custom thumbnail grid 3 columns? [closed]