vote up 6 vote down star

I have an absolutely positioned div containing several children, one of which is a relatively positioned div. When I use a percentage-based width on the child div, it collapses to 0 width on IE7, but not on Firefox or Safari.

If I use pixel width, it works. If the parent is relatively positioned, the percentage width on the child works.

Is there something I'm missing here?

Is there an easy fix besides the pixel-based width on the child?

Is there an area of the CSS specification that covers this?

flag

75% accept rate
3  
Wow....1st question on SO!! You should get a badge for that. – Keng Apr 1 at 14:24
yeah, frist psot as they call it – flybywire May 5 at 6:38
Actually... stackoverflow.com/questions/4 is the earliest question accessible as of 04/12/2009... – Beau Martínez Dec 4 at 12:49

5 Answers

vote up 6 vote down check

Does the parent div have a defined width either pixel or percentage? Not 100% sure but I think in IE7, the parent div needs a defined width for child percentage divs to work correctly.

link|flag
vote up 0 vote down

Example code might help.

link|flag
vote up 2 vote down

Here is some sample code. I think this is what you are looking for. The following displays exactly the same in Firefox 3 (mac) and IE7.

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style>
#absdiv {
position: absolute;
left: 100px;
top: 100px;
width: 80%;
height: 60%;
background: #999;
}

#pctchild {
width: 60%;
height: 40%;
background: #CCC;
}

#reldiv {
position: relative;
left: 20px;
top: 20px;
height: 25px;
width: 40%;
background: red;
}
</style>
</head>

<body>
<div id="absdiv">
<div id="reldiv">
</div>
<div id="pctchild">
</div>
</div>
</body>
</html>
link|flag
vote up 0 vote down

IE prior to 8 has a temporal aspect to its box model that most notably creates a problem with percentage based widths. In your case here an absolutely positioned div by default has no width. Its width will be worked out based on the pixel width of its content and will be calculated after the contents are rendered. So at the point IE encounters and renders your relatively positioned div its parent has a width of 0 hence why it itself collapses to 0.

If you would like a more in depth discussion of this along with lots of working examples, have a gander here.

link|flag
vote up 0 vote down

Why doesn’t the percentage width child in absolutely positioned parent work in IE7?

-- because its internet exploder

Is there something I'm missing here?

-- that is, to raise your co-worker's / clients' awareness that IE sucks

Is there an easy fix besides the pixel-based width on the child?

-- use em as they are more useful when creating liquid layouts as you can use them for padding and margins as well as font-sizes. So your whitespace grows and shrinks proportional to your text if it is resized (which is really what you need). I don't think percentages give a finer control than ems; there's nothing to stop you specifying in hundredths of ems (0.01em) and the browser will interpret as it sees fit.

Is there an area of the CSS specification that covers this?

-- none, as far as i remember em's and %'s were intended for font sizes alone back at css1.0

link|flag

Your Answer

Get an OpenID
or

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