Web-labs

Bases

Web-apps

CSS Base by Daniël de Wit

De hoogte van deze css base is altijd 100%. Dat wil dus zeggen dat dat de footer altijd onderaan de pagina staat en de content doorloopt tot aan de footer. Ook als er maar een klein beetje tekst in de content staat.

Belangrijk:

html, body {
height: 100%;
}
#container {
position: relative;
min-height: 100%;
height: auto !important;
height: 100%;
}
#content {
padding-bottom: 40px;
}
#footer {
position: absolute;
bottom: 0px;
width: 100%;
}