I'm trying to get an image to fit within a specific size div. Unfortunately, the image isn't conforming to it and is instead proportionally shrinking to a size that isn't big enough. I'm not sure what the best way is to go about getting the image to fit inside it is.
If this isn't enough code, I'd be happy to supply more, and I'm open to fixing any other errors that I am overlooking.
Here is the HTML
<div class="span3 top1">
<div class="row">
<div class="span3 food1">
<img src="images/food1.jpg" alt="">
</div>
</div>
<div class="row">
<div class="span3 name1">
heres the name
</div>
</div>
<div class="row">
<div class="span3 description1">
heres where i describe and say "read more"
</div>
</div>
</div>
My CSS
.top1{
height:390px;
background-color:#FFFFFF;
margin-top:10px;
}
.food1{
background-color:#000000;
height:230px;
}
.name1{
background-color:#555555;
height:90px;
}
.description1{
background-color:#777777;
height:70px;
}
Most of the time,bootstrap project uses jQuery, so you can use jQuery.
Just get the width and height of parent with
JQuery.offsetHeight()
andJQuery.offsetWidth()
, and set them to the child element withJQuery.width()
andJQuery.height()
.If you want to make it responsive, repeat the above steps in the
$(window).resize(func)
, as well.I used this and works for me.
Just a heads up that Bootstrap 4 now uses
img-fluid
instead ofimg-responsive
, so double check which version you're using if you're having problems.If any of you looking for Bootstrap-4. Here it is
Try this way:
UPDATE:
In Bootstrap 4
img-responsive
becomesimg-fluid
, so the solution using Bootstrap 4 is:Simply add the class
img-responsive
to yourimg
tag, it is applicable in bootstrap 3 onward!