Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

CSS - header - always bottom footer and 100% content

Tags:

html

css

<body> 
    <div id="wrap">
        <div id="header">
            HEADER
        </div>
        <div id="inner-wrap">
            <div id="content">
               CONTENT
            </div>
        </div>
        <div id="footer">
            FOTTER
        </div>
    </div> </body>

AND CSS:

html { height:100%; max-height:100%; }

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

#wrap {
    min-height:100%;
    height: 100%;
    position:relative;
}
* html #wrap { height:100% }

#inner-wrap {
    padding-bottom:50px;
    min-height: 100%;
}
#inner-wrap:after {
    content:" ";
    display:block;
    clear:both;

}
* html #inner-wrap {
    height:100%;
}

#header
{
    width: 100%;
    background-color: #C0C0C0;
    height: 16px;
    color: White;
    text-align: center;
    position: relative;
    top:0px;
}
#footer
{
    width: 100%;
    background-color: #C0C0C0;
    height: 50px;
    position:absolute;
    bottom: 0;
    color: White;
    text-align: center;
}
#content
{
    width: 1000px;
    height: 100%;
    background-color: #F5FDEC;  
    margin: 0 auto 0 auto;
}

The Problem:

How i can make this: HEADER top 16px, CONTENT dynamic 100% height, FOOTER at end of page

If i give 100% to inner-wrap DIV, them after footer is white space.

Thx

like image 488
David Horák Avatar asked Feb 03 '11 09:02

David Horák


1 Answers

You have too many heights going on:

Remove the min-height and max-height values from your selectors.

Remove the position: absolute; from your #wrap div.

I made an example for you here.

like image 186
Kyle Avatar answered Sep 24 '22 02:09

Kyle