How can i get an image to stretch the height of a div class?
Currently it looks like this:

But i would like the div to be stretched so the image fits properly. I do not want to resize the image.
Here is the css for the div (the grey box)
.product1 {
width: 100%;
padding: 5px;
margin: 0px 0px 15px -5px;
background: #ADA19A;
color: #000000;
min-height: 100px;
}
And the css being applied on the image:
.product{
display: inline;
float: left;
}
So, how can i fix this?
