Wiki

Clone wiki

DevFecta Public Repository / CSS

Force Footer to Bottom of the Page

html {
    position: relative;
    min-height: 100%;
}
body {
    margin: 0;
}
footer {
    position: absolute;
    bottom: 0;
    width: 100%;
}

Updated