What I want to do is show only a piece of the image, as 50% of the height shown now is the one I want to cut and when the user clicks on the image that opens up as well as on a modal.
I'm just learning boostrap and what I have code is this:
<div class="row">
<div class="col-lg-3">
<img src="./img/muestra.jpg" class="img-thumbnail">
</div>
<div class="col-lg-9">
<select>
<option>Seleccione una opción</option>
</select>
</div>
</div>
If I put a fixed height the image is crushed, what I'm looking for is that it comes out cropped. Any ideas?