Answers for "how to make a footer stick to bottom of page"

CSS
5

html make footer stick to bottom

body{
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
footer{
    margin-top: auto;
}
Posted by: Guest on May-12-2021

Code answers related to "how to make a footer stick to bottom of page"

Browse Popular Code Answers by Language