Html Make Footer Stick To Bottom

html make footer stick to bottom
body{
min-height: 100vh;
display: flex;
flex-direction: column;
}
footer{
margin-top: auto;
}

Leave a Comment