vote up 6 vote down star
2

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?

flag

6 Answers

vote up 5 vote down check

Add overflow:auto; to .product1

link|flag
vote up 4 vote down

In the markup after the image, insert something like <div style="clear:left"/>. A bit messy, but it's the easiest way I've found.

And while you're at it, put a bit of margin on that image so the text doesn't butt up against it.

link|flag
vote up 3 vote down

Assuming @John Millikin is correct, the code

.product + * { clear: left; }

would suffice to do the same thing without forcing you to manually adjust the code after the div.

link|flag
vote up 2 vote down

One trick you can use is to set the <div>'s overflow property to hidden. This forces browsers to calculate the physical size of the box, and fixes the weird overlap problem with the floated image. It will save you from adding in any extra HTML markup.

Here's how the class should look:

.product1 {
    width: 100%;
    padding: 5px;
    margin: 0px 0px 15px -5px;
    background: #ADA19A;
    color: #000000;
    min-height: 100px;
    overflow: hidden;
}
link|flag
vote up 1 vote down
display:inline  
float:left

is your problem

Floating makes the parents width not be stretched by the child, try placing the image without the float. If you take the float off, it should give you the desired effect.
Another approach would be to make sure you are clearing your floats at the end of the parent element so that they don't scope creep.

Update: After viewing your link Your height issue as displayed, is because the floats are not being cleared.

link|flag
vote up 1 vote down

This looks like a job for clearfix to me ...

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.