* {
    margin: 0;
    padding: 0;
}

html {
    height: 100%;
}

body {
    min-height: 100%;
}

* html body {
    height: 100%;        /* замена min-height:100% для IE6 */
}

body {
    position: relative;  /* абсолютно позиционируемые элементы
                           будут располагаться относительно body */
}

#content {
    padding-bottom: 7em; /* место для футера */
}

#footer {
    position: absolute;
    bottom: 0;
    height: 7em;
    width: 100%;
    background: wheat;
}

p { margin: 10px; }

h1 { margin: 0 10px; }
