Answers for "make the footer stick to the bottom of a page responsive css"

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 "make the footer stick to the bottom of a page responsive css"

Browse Popular Code Answers by Language