I am currently working on a web application, where I want the content to fill the height of the entire screen.

The page has a header, which contains a logo, and account information. This could be an arbitrary height. I want the content div to fill the rest of the page to the bottom.

I have a header div and a content div. At the moment I am using a table for the layout like so:

CSS:

#page {
  height: 100%; width: 100%
}
#tdcontent {
  height: 100%;
}
#content {
  overflow: auto; /* or overflow: hidden; */
}

HTML:

<table id="page">
  <tr><td id="tdheader">
    <div id="header">...</div>
  </td></tr>
  <tr><td id="tdcontent">
    <div id="content">...</div>
  </td>
</table>

The entire height of the page is filled, and no scrolling is required. If it is,

For anything inside the content div, setting top: 0; will put it right underneath the header. Sometimes the content will be a real table, with it's height set to 100%. Putting header inside content will not allow this to work.

Is there a way to achieve the same effect without using the table?

Update:

Elements inside the content div will have heights set to percentages as well. So something at 100% inside the div will fill it to the bottom. As will two elements at 50%.

Update 2:

For instance, if the header takes up 20% of the screen's height, a table specified at 50% inside #content would take up 40% of the screen space. So far, wrapping the entire thing in a table is the only thing that works.

link|improve this question

missing a end quote on the id="tdcontent" – Bruce Sep 18 '08 at 5:18
This is EXACTLY why we shouldn't hassle people who use table based layouts. – JohnFx Jan 25 at 3:16
feedback

12 Answers

up vote 35 down vote accepted

There really isn't a sound, cross-browser way to do this in CSS. Assuming your layout has complexities, you need to use JavaScript to set the element's height. The essence of what you need to do is:

Element Height = Viewport height - element.offset.top - desired bottom margin

Once you can get this value and set the element's height, you need to attach event handlers to both the window onload and onresize so that you can fire your resize function.

Also, assuming your content could be larger than the viewport, you will need to set overflow-y to scroll.

link|improve this answer
1  
That's what I suspected. However, the app will also work with Javascript turned off, so I guess I'll just keep using the table. – Vincent McNabb Sep 18 '08 at 9:22
There seem to be several solutions here that don't rely on JS. Why no go with one of them instead? – Charles Roper Sep 18 '08 at 17:01
14  
Because non of the solutions work as per the description. – Vincent McNabb Sep 29 '08 at 22:08
2  
Vincent, way to stand your ground. I was looking to do the exact same thing and it appears not possible with css? I'm not sure but regardless none of the other tons of solutions do what you've described. The javascript one is the only one that works correctly at this point. – Travis May 4 '10 at 20:00
This is by far the best solution to this problem. It wouldn't work for the original poster, but this worked for me. – CrowderSoup Nov 14 '11 at 22:31
show 1 more comment
feedback

Try this, it should work in all browsers:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
    <title>Test</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <style type="text/css" media="screen">
    * { 
    	margin: 0; 
    }

    html, 
    body { 
    	height: 100%; 
    }

    #wrapper {
    	min-height: 100%;
    	height:     auto !important;
    	height:     100%;
    	margin:     0 auto -44px; /* -44px being the size of the footer */
    }

    #header { 
    	height: 86px; 
    }

    #footer, 
    #push {
    	height: 44px;	
    }
    </style>
</head>
<body>
    <div id="wrapper">
    	<div id="header">header</div>
    	<div id="content">content</div>
    	<div id="push"></div>
    </div>
    <div id="footer">footer</div>
</body>
</html>
link|improve this answer
Works great in Safari, Chrome, Firefox. Haven't tried IE. – Leopd Oct 13 '10 at 23:43
7  
Looks nice but the poster said he doesn't know the height of the header... – ErikE Oct 25 '10 at 6:35
Excelent! Just what I needed - thanks! – Tomáš Kafka May 12 '11 at 10:42
Brilliance! Thank you so much for this. – Zade May 10 at 12:53
feedback
<!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>
<title>Test</title>
<style type="text/css">
body
,html
{
    height: 100%;
    margin: 0;
    padding: 0;
    color: #FFF;
}

#header
{
    float: left;
    width: 100%;
    background: red;
}

#content
{
    height: 100%;
    overflow: auto;
    background: blue;
}

</style>
</head>
<body>

    <div id="content">
	    <div id="header">
			    Header
    			<p>Header stuff</p>
	    </div>
		    Content
    		<p>Content stuff</p>
    </div>

</body>
</html>

In all sane browsers, you can put the "header" div before the content, as a sibling, and the same CSS will work. However, IE7- does not interpret the height correctly if the float is 100% in that case, so the header needs to be IN the content, as above. The overflow: auto will cause double scroll bars on IE (which always has the viewport scrollbar visible, but disabled), but without it, the content will clip if it overflows.

link|improve this answer
Close! Almost what I want, except I'm going to have other things positioned in the div... i.e. top: 0; will put something right below the header. I'll modify my question again, because you answered it perfectly, and still not what I want! I'll just hide the overflow as the content must fit. – Vincent McNabb Sep 18 '08 at 7:50
-1: This answer creates a div called content that covers the whole screen, not the rest of the screen – Casebash May 19 '11 at 5:44
feedback

The original post is more than 3 years ago. And I guess many people who come to this post like me are looking for an app-like layout solution, say a somehow fixed header, footer, and full height content taking up the rest screen. If so, this post may help, it works on IE7+, etc.

http://blog.stevensanderson.com/2011/10/05/full-height-app-layouts-a-css-trick-to-make-it-easier/

And here are some snippets from that post,

<!doctype html>
<html>
<head>
    <title>Test</title>
    <meta http-equiv="content-type" content="text/html; charset=utf-8" />
    <style type="text/css" media="screen">
    /* Generic pane rules */
    body { margin: 0 }
    .row, .col { overflow: hidden; position: absolute; }
    .row { left: 0; right: 0; }
    .col { top: 0; bottom: 0; }
    .scroll-x { overflow-x: auto; }
    .scroll-y { overflow-y: auto; }

    .header.row { height: 75px; top: 0; }
    .body.row { top: 75px; bottom: 50px; }
    .footer.row { height: 50px; bottom: 0; }
    </style>
</head>
<body>
    <div class="header row">
        <h2>My header</h2>
    </div> 
    <div class="body row scroll-y">
        <p>The body</p>
    </div> 
    <div class="footer row">
        My footer
    </div>
</body>
</html>
link|improve this answer
There’s just one problem with this: the header and footer aren’t auto-sized. That is the real difficulty, and that is why a "this is not possible" answer is currently at the top... – romkyns Mar 4 at 17:16
feedback

I've been searching for an answer for this as well. If you are fortunate enough to be able to target IE8 and up, you can use display:table and related values to get the rendering rules of tables with block-level elements including div.

If you are even luckier and your users are using top-tier browsers (for example, if this is an intranet app on computers you control, like my latest project is), you can use the new Flexible Box Layout in CSS3!

link|improve this answer
1  
Citing the W3C site for css3-flexbox "Publication as a Working Draft does not imply endorsement by the W3C Membership. This is a draft document and may be updated, replaced or obsoleted by other documents at any time. It is inappropriate to cite this document as other than work in progress." So this is not appropriate to recommend for actual development, only for preview of some kind. – Artem Oboturov Nov 3 '11 at 11:43
feedback

What worked for me (with a div within another div and I assume in all other circumstances) is to set the bottom padding to 100%. That is, add this to your css / stylesheet:

padding-bottom: 100%;
link|improve this answer
feedback

If the only issue is height, just using divs seems to work:

<div id="header">header content</div>
<div id="content" style="height:100%">content content</div>

In a simple test, the width of header/content is different in your example and mine, but I'm not sure from your post if you're concerned about the width?

link|improve this answer
That's not quite what I want to do. I want the content div to fill the remainder of the screeen, not to actually be the same height as the screen. – Vincent McNabb Sep 18 '08 at 5:33
That appears to be what my example does, at least when I try it. Do you not see that behavior? – Bruce Sep 20 '08 at 2:46
2  
Try putting a table inside the content, that is at size 100%. It will not work. – Vincent McNabb Sep 29 '08 at 22:08
feedback

Vincent, I'll answer again using your new requirements. Since you don't care about the content being hidden if it's too long, you don't need to float the header. Just put overflow hidden on the html and body tags, and set #content height to 100%. The content will always be longer than the viewport by the height of the header, but it'll be hidden and won't cause scrollbars.

<!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>
<title>Test</title>
<style type="text/css">
body
,html
{
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #FFF;
}
p
{
	margin: 0;
}

#header
{
    background: red;
}

#content
{
    position: relative;
    height: 100%;
    background: blue;
}

#content #positioned
{
    position: absolute;
    top: 0;
    right: 0;
}

</style>
</head>
<body>

<div id="header">
    Header
    <p>Header stuff</p>
</div>
<div id="content">
    Content
    <p>Content stuff</p>
    <div id="positioned">Positioned Content</div>
</div>

</body>
</html>
link|improve this answer
Already thought of this. But it doesn't work either. I'm just going to stick with a table because it works. Thanks for the update though. – Vincent McNabb Sep 18 '08 at 18:02
feedback

So... I came up with an idea for this. For approximately 92% of the people viewing my website (lakipolitis.com), their browser is 1680x1050 or smaller. I've set my height for #main to a minimum height, then defined the height of the footer... so peep this.

body {
 height: 100%;
}

#main {
 min-height: 89%;
}

#footer {
 height: 63px;
 overflow: hidden;
}

So effectively, #main will always take up as much as 89% (never less than my content, and usually never less than ~940px) of the viewable space, which will ALWAYS be smaller than my content.

It may not work for you, but it worked for me.

link|improve this answer
feedback

I wresteled with this for a while and ended up with the following:

Since it is easy to make the content DIV the same height as the parent but apparently difficult to make it the parent height minus the header height I decided to make content div full height but position it absolutely in the top left corner and then define a padding for the top which has the height of the header. This way the content displays neatly under the header and fills the whole remaining space:

<style type="text/css">

body
{
  padding: 0;
  margin: 0;
  height: 100%;
  overflow:hidden;
}

#header
{  
  position: absolute;   
  top:0;
  left: 0;
  height:50px;
}


#content
{  
        position: absolute;   
        top:0;
        left: 0;
        padding-top:50px;
        height:100%;

}
</style>
link|improve this answer
feedback

it never worked for me in other way then with use of the JavaScript as NICCAI suggested in the very first answer. I am using that approach to rescale the <div> with the Google Maps.

Here is the full example how to do that (works in Safari/FireFox/IE/iPhone/Andorid (works with rotation)):

<html>
<head>
    <style type="text/css">

        body
        {
            height: 100%;
            margin: 0;
            padding: 0;
        }

        .header
        {
            height: 100px;
            background-color: red;
        }

        .content
        {
            height: 100%;
            background-color: green;
        }
    </style>

<script type="text/javascript">

    function resize()
    {
        // Get elements and necessary element heights
        var contentDiv = document.getElementById("contentId");
        var headerDiv = document.getElementById("headerId");
        var headerHeight = headerDiv.offsetHeight;

        // Get view height
        var viewportHeight = document.getElementsByTagName('body')[0].clientHeight;

        // Compute the content height - we want to fill the whole remaining area
        // in browser window
        contentDiv.style.height = viewportHeight - headerHeight;
    }

   window.onload = resize;
   window.onresize = resize;
</script>

</head>
    <body>
        <div class="header" id="headerId">Hello</div>
        <div class="content" id="contentId">
        </div>
    </body>
</html>

Comments are welcomed. BR STeN

link|improve this answer
feedback

why not just like this?

html, body{
height:100%;
}

#containerInput {
background-image: url('../img/edit_bg.jpg');
height:40%;
}

#containerControl{
background-image: url('../img/control_bg.jpg');
height:60%;
}

Giving you html and body (in that order) a height and then just give your elements a height? Works for me

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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