Как я могу получить изображение, чтобы растянуть высоту класса DIV
?
В настоящее время это выглядит так:
However, I would like the DIV to be stretched so the image fits properly, but 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;
}
CSS, применяемый к изображению:
.product{
display: inline;
float: left;
}
Итак, как мне это исправить?