cyanidecupcake / cyanideWeb

Repository for CyanideCupcake.com
0 stars 0 forks source link

Make Footer Sticky #6

Open cyanidecupcake opened 7 years ago

cyanidecupcake commented 7 years ago

Sometimes footer doesn't stick to bottom of page, but not always. @notklaatu thinks he has a solution.

whitespacefooter

notklaatu commented 7 years ago

I'm actually not sure what I am doing on slackermedia.info to achieve this. I don't exactly remember. But here's the relevant CSS:

body {
    line-height: 1;
    overflow-y:scroll;
}

#main {
    min-height:100%;
    width: 100%
    position:relative;
    background-color: #fff;
    margin: 0;
}

footer {
    margin: 0 0 4ex 0;
    padding: 2ex 2em 6ex 2em;
    float: right;
}
cyanidecupcake commented 7 years ago

https://philipwalton.github.io/solved-by-flexbox/demos/sticky-footer/