3
How can I put the component of Bootstrap
Thumbnails in horizontal order? And how can I increase their size (with the image together) to a size I want? If you can help me thank you very much.
3
How can I put the component of Bootstrap
Thumbnails in horizontal order? And how can I increase their size (with the image together) to a size I want? If you can help me thank you very much.
4
According to the documentation:
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<link href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="stylesheet"/>
<div class="row">
<div class="col-xs-6 col-md-3">
<a href="#" class="thumbnail">
<img src="https://images-na.ssl-images-amazon.com/images/G/01/img15/pet-products/small-tiles/23695_pets_vertical_store_dogs_small_tile_8._CB312176604_.jpg" alt="...">
</a>
</div>
<div class="col-xs-6 col-md-3">
<a href="#" class="thumbnail">
<img src="https://images-na.ssl-images-amazon.com/images/G/01/img15/pet-products/small-tiles/23695_pets_vertical_store_dogs_small_tile_8._CB312176604_.jpg" alt="...">
</a>
</div>
</div>
To change the size you can use the col-md
.
Browser other questions tagged css bootstrap alignment
You are not signed in. Login or sign up in order to post.
What is the code to stand side by side? And there is no way to increase the height of col-Md? Because it only increases the width :(
– user39571
@Vinicius you leave the images side by side with the
col-md
this is the bootstrap grids system, they are divided into 12 parts. To change the size you can use thewidth
in the image, but be careful not to leave the image view impaired with this.– Felipe Paetzold
OK thank you very much.
– user39571