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

This is probably a very dummy question, don't throw your shoes at me :)

Consider having HTML like this:

<div class="container">
    <div class="header">
    </div>
    <div class="body">
    </div>
    <div class="footer">
    </div>
</div>

I want 'header' and 'footer' to be anchored to the parent's top and bottom respectively, and 'body' to grow easily to fit all available space. What would the CSS look like to achieve this?

EDIT: Maybe I'm saying this wrong (i'm not exactly a web developer :) ), but what I need is to have some part of a div always attached to its bottom. So when div grows this part (which might have a fixed size) would go lower with the div's lower end. But all this doesn't mean attaching a div to the bottom of browser's window.

share|improve this question
do you want the header and footer to be visible all of the time? like on this page ryanfait.com/sticky-footer – superUntitled May 15 '09 at 14:14
no, not necessarily. this is more meant for small things, not for the whole page layout. so inner divs should be at the top and bottom of their container, not the browser window – arconaut May 15 '09 at 14:53

4 Answers

up vote 3 down vote accepted

If I understand your question correctly, you require some really basic css.

body { background: black; }
.container { width: 960px; }
.header { height: 100px; background: #ddd; }
.content { padding: 10px; }
.footer { height: 100px; background: #ddd; }

Your div's are not floated, so will stack on top of each other like pancakes.

If you want the footer to be "sticky", see here for a solution... http://ryanfait.com/sticky-footer/

share|improve this answer

Here you go:

Example page - footer sticks to bottom

this will have the content right
between the footer and the header.
no overlapping.

<html>
<head>
    <meta name="generator" content="HTML Tidy, see www.w3.org" />
    <title>footer at bottom</title>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />

	<style type="text/css">
		/* commented backslash hack \*/ 
		html, body{height:100%;} 
		/* end hack */
		html,body{ margin:0;padding:0; font-size:1.2em; text-align:center; }

		.header{ height:200px; background:lightblue; }
		#outer{ min-height:100%; margin-bottom:-50px; height:auto; }
		* html #outer{height:100%;}
		#footer { width:100%; clear:both; height:50px; background-color: lightgreen; color: #000; }
		#clearfooter{ clear:both; height:50px; }
		div>p { margin:0} 
		html>body #minHeight{float:left;width:0px;height:100%;margin-bottom:-52px;} /*safari wrapper */

	</style>

</head>
<body>
    <div id="minHeight"></div>
    <!-- Safari hack -->

    <div id="outer">
        <div class="header">Header</div>
        <p>content goes here</p>
        <div id="clearfooter"></div>
    </div>

    <div id="footer">
        Footer
    </div>
</body>

share|improve this answer

If im correct your asking for the header and footer to stick top and bottom.

If so this is what you need.

See Here

Good Luck

share|improve this answer

Try this: Set position: relative on the parent div. Set position: absolute on the inner div(s) and set both the top and the bottom properties; don't set height. The inner div(s) should stretch vertically with the parent, as required. (Doesn't work in IE6 and below unfortunately).

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.