Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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.

share|improve this question

10 Answers

up vote 341 down vote accepted

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, but I like to make it explicit. The container has to be the right type; position attribute is fixed, relative, or absolute.

.stretchedToMargin {
    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;
}

HTML

<div class="stretchedToMargin">
  Hello, world
</div>
share|improve this answer
14  
Superb solution, will be bookmarking this one. Just quickly added it to jsfiddle.net/Rpdr9 for anyone who wants a live demo. Hope you don't mind. – Nooshu Mar 4 '10 at 14:08
27  
WOW!!! This answers a question I've had for literally years!!! This really made my day! – Rocketmonkeys Apr 29 '10 at 1:12
10  
While @Toji didn't care about IE compatibility, I unfortunately have to. This solution didn't initially work under IE6. Adding Dean Edwards' IE9.js to the page made this work. Now I just have to hope and pray that the relative/absolute positioning doesn't screw with something in a child element... – Christopher Parker May 19 '10 at 18:34
7  
-1 (though it looks like I'm a minority here :P ). This assumes that the box can be absolutely-positioned; people already overuse pos:abs as it is, they don't need this ammo. Take this example: a div "panels" with multiple divs of class "panel" inside it. "panels" has {overflow:hidden; height:300px;}, and "panel" have varying contents/content-height, with {border:#000 solid 1px; float:left; margin-right:10px;}. Make all "panel" the height of "panels" without losing borders at any point. The "panel" divs cannot be pos:abs'd here. @Marco's solution works for this scenario, though. – eternicode Jun 3 '11 at 1:50
6  
Oh wow, I get it. The top:0, bottom:0, essentially "stretch" out the element. I can only get it to work with position:absolute though – Matt Sep 12 '11 at 8:42
show 21 more comments

There is a new tag in CSS3 that you can use to change the way the box model calculates width/height, it's called box-sizing.

By setting this property with the value "border-box" it makes which ever element you apply it to not stretch when you add a padding or border. If you define something with 100px width, and 10px padding, it will still be 100px wide.

-webkit-box-sizing: border-box;
   -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
     -o-box-sizing: border-box;
        box-sizing: border-box;

It does not work for IE7 and lower, however, I believe that Dean Edward's IE7.js adds support for it. Enjoy :)

share|improve this answer
4  
That's awesome! Thanks for pointing this out! – Toji Jun 14 '10 at 21:17
11  
Finally! I've been waiting for this exact feature for about 10 years now. Pity IE7 doesnt support it but I always think people who are still using IE dont deserve a beautiful layout. – cronoklee Jan 16 '12 at 11:14
that.. is... awesome! – orip Jan 22 '12 at 21:02
7  
This is basically the same as IE's quirks mode box model. I find it funny how everyone hates on IE yet now border-box is everyone's hero :) – Matt Greer Apr 13 '12 at 2:58
8  
FYI, the browser prefix for box-sizing is now dropped for all but -moz. See paulirish.com/2012/box-sizing-border-box-ftw and the comments for a good discussion – aponzani Aug 2 '12 at 20:06
show 3 more comments

The solution is to NOT use height and width at all! Attach the inner box using top, left, right, bottom and then add margin.

<style>
  .box {margin:8px; position:absolute; top:0; left:0; right:0; bottom:0}
</style>

<div class="box" style="background:black">
  <div class="box" style="background:green">
    <div class="box" style="background:lightblue">
      This will show three nested boxes. Try resizing browser to see they remain nested properly.
    </div>
  </div>
</div>
share|improve this answer
3  
Up-vote because you're technically correct, but it's also basically the same answer as Frank's (Which I think is a bit more friendly to the sloppier browsers out there.) – Toji Apr 10 '10 at 1:03
Franks answer didn't work for me, this one did +1... thanks – reach4thelasers Apr 2 '12 at 11:30
Fantastic solution!!! Very simple! – Nery Jr May 19 '12 at 22:57
Excellent solution, works like a charm. Simple implementation too. Thanks – stephen ebichondo May 25 '12 at 15:13
Whao. Worked like magic. Simple and nifty class. – ritcoder Sep 26 '12 at 22:40

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>
share|improve this answer
3  
@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 '09 at 3:19
@Frank: Care to elaborate? – Software Monkey Feb 3 '09 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 '09 at 0:40

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.

share|improve this answer
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 '09 at 23:55

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?

share|improve this answer

CSS's width:auto behaves like a 100% 'margin box', meaning that it'll take up 100% of available space and any added margin, border or padding will not increase the space used.

Any other CSS width declaration, e.g. width:100% will behave like a 'content box', meaning that it'll take up the declared amount of space, plus the space declared for margins, border and padding.

Since your specific question pertains to an 100% width, you don't need the trickery I'm about to suggest (Frank Schwieterman's answer suffices entirely), but perhaps it'll save you from asking follow-up questions about 50%/etc boxes and help you understand the spec both now and in future: How To Design In The Box Model Of Your Choice. Note that the trickery described therein is only viable if you can afford to slightly break from semantic clarity in your HTML.

[Applies to height, too, harping on width for ease of reference.]

share|improve this answer
+1, great link! – Brad Sep 2 '12 at 21:40

Another solution is to use display:table which has a different box model behaviour.

You can set a height and width to the parent and add padding without expanding it. The child has 100% height and width minus the paddings.

http://jsbin.com/usudef/1/

Another option would be to use box-sizing propperty. Only problem with both would be they dont work in IE7.

share|improve this answer

Frank's example confused me a bit - it didn't work in my case because I didn't understand positioning well enough yet. It's important to note that the parent container element needs to have a non-static position (he mentioned this but I overlooked it, and it wasn't in his example).

Here's an example where the child - given padding and a border - uses absolute positioning to fill the parent 100%. The parent uses relative positioning in order to provide a point of reference for the child's position while remaining in the normal flow - the next element "more-content" is not affected:

#box {
    position: relative;
    height: 300px;
    width: 600px;
}

#box p {
    position: absolute;
    border-style: dashed;
    padding: 1em;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

<div id="box">
  <p>100% height and width!</p>
</div>
<div id="more-content">
</div>

A useful link for quickly learning CSS positioning: http://www.barelyfitz.com/screencast/html-training/css/positioning/

share|improve this answer
  <style type="text/css">
.stretchedToMargin {
    position:absolute;
    width:100%;
    height:100%;

}
</style>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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