vote up 5 vote down star
3

This has been driving me crazy for a couple of days now, but in reality it's a problem that I've hit off and on for the last few years: With HTML/CSS how can I make an element that has a width and/or height that is 100% of it's parent element and still has proper padding or margins?

By "proper" I mean that if my parent element is 200px tall and I specify 100% height with 5px padding I would expect that I should get a 190px high element with 5px "border" on all sides, nicely centered in the parent element.

Now, I know that that's not how the standard box model specifies it should work (although I'd like to know why, exactly...), so the obvious answer doesn't work:

#myDiv {
    width: 100%
    height: 100%;
    padding: 5px;
}

But it would seem to me that there must be SOME way of reliably producing this effect for a parent of arbitrary size. Does anyone know of a way of accomplishing this (seemingly simple) task?

Oh, and for the record I'm not terribly interested in IE compatibility so that should (hopefully) make things a bit easier.

EDIT: Since an example was asked for, here's the simplest one I can think of:

<html style="height: 100%">
    <body style="height: 100%">
        <div style="background-color: black; height: 100%; padding: 25px"></div>
    </body>
</html>

The challenge is then to get the black box to show up with a 25 pixel padding on all edges without the page growing big enough to require scrollbars.

flag

5 Answers

vote up 8 vote down check

I learned how to do these sort of things reading "PRO HTML and CSS Design Patterns". The 'display:block' is the default display value for the div tag, but I like to make it explicit. The container has to be the right type (position attribute is fixed, relative, or absolute).

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html>
<head>

<style>
*.stretchedMargin {
    display: block;
    position:absolute;
    height:auto;
    bottom:0;
    top:0;
    left:0;
    right:0;
    margin-top:20px;
    margin-bottom:20px;
    margin-right:80px;
    margin-left:80px;
    background-color: green;
}
</style>
</head>

<body>
<div class="stretchedMargin">
Hello, world
</div>

</body>
</html>
link|flag
Wow... that's a lot of CSS to go through but it appears to work! This may be what I was looking for. Let me play around with it in a few more scenarios before I mark this as accepted. – Toji Jan 28 at 0:02
If you have more questions, like how to get it to work in a particular context, let me know. Note that the horizontal related elements and the vertical related elements can be used independently, so long as the display is block and position is fixed, absolute or relative. – Frank Schwieterman Jan 28 at 0:07
Just tried it in the context that I'll be using it and it works like a charm. Still blown away that it takes that much code to do something that really ought to be two lines, but if it works I'll take it! Thanks! – Toji Jan 28 at 0:10
vote up 3 vote down

According the the w3c spec height refers to the height of the viewable area e.g. on a 1280x1024 pixel resolution monitor 100% height = 1024 pixels.

min-height refers to the total height of the page including content so on a page where the content is bigger than 1024px min-height:100% will stretch to include all of the content.

The other problem then is that padding and border are added to the height and width in most modern browsers except ie6(ie6 is actually quite logical but does not conform to the spec). This is called the box model. So if you specify

min-height: 100%;
padding: 5px;

It will actually give you 100% + 5px + 5px for the height. To get around this you need a wrapper container.

<style>
    .FullHeight { 
       height: auto !important; /* ie 6 will ignore this */
       height: 100%;            /* ie 6 will use this instead of min-height */
       min-height: 100%;        /* ie 6 will ignore this */
    }

    .Padded {
       padding: 5px;
    }
</style>

<div class="FullHeight">
   <div class="Padded">
      Hello i am padded.
   </div
</div>
link|flag
@Alex: But what makes the inner div (the Padded one) 100% of the outer div's height. My experience has been that you just get a little short div inside a larger full-height div. – Software Monkey Jan 28 at 3:19
I'm not sure how this got 3 votes up, its full of wrong. – Frank Schwieterman Jan 29 at 18:45
@Frank: Care to elaborate? – Software Monkey Feb 3 at 7:56
@Software Monkey. You are correct i read the question wrong :) I thought the OP wanted 100% height of the page. – Alex Feb 4 at 0:40
vote up 2 vote down

This is one of the outright idiocies of CSS - I have yet to understand the reasoning (if someone knows, pls. explain).

100% means 100% of the container height - to which any margins, borders and padding are added. So it is effectively impossible to get a container which fills it's parent and which has a margin, border, or padding.

Note also, setting height is notoriously inconsistent between browsers, too.

link|flag
There is no reasoning, just what happened where browsers started to converge towards consistent behavior. Check out the book mentioned in my response. – Frank Schwieterman Jan 27 at 23:55
vote up 1 vote down

I've found these two solutions to be the most reliable:

http://www.xs4all.nl/~peterned/examples/csslayout1.html

http://themaninblue.com/experiment/footerStickAlt/

Do you have any specific HTML that we can see and play with?

link|flag
vote up 0 vote down

Would it work for your situation to put the padding on the parent element?

link|flag
In the particular case I'm trying for the "parent element" is the document body, which I have to set to 100% height in order to have anything else size to 100% properly, so it's subject to the same problem. Thanks, though. – Toji Jan 27 at 23:54

Your Answer

Get an OpenID
or

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