DEV Community

Discussion on: How to make footer stick at the bottom of web page.

Collapse
 
naren67 profile image
naren67

.footer{
position:fixed;
bottom:0;
}
a quick update use position fixed instead of absolute

Thread Thread
 
chrisokwakol profile image
Chris Okwakol

footer {
position:relative;
bottom:0;
}

this worked for me.