I Want to have a fixed footer at the bottom of an HTML page, even in XS an SM sizes.
When i make it relative, it depends of what is displayed, and I want it fixed at the bottom.
Can somebody help me ?
I Want to have a fixed footer at the bottom of an HTML page, even in XS an SM sizes.
When i make it relative, it depends of what is displayed, and I want it fixed at the bottom.
Can somebody help me ?
You can use the following style:
position: fixed;
bottom: 0;
left: 0;
right: 0;
You'll of course have to adjust it to your specific case. If you had a code example I could give you something more specific.
That's how you get a sticky footer
body{
min-height: 100vh;
flex-direction: column;
}
footer{
margin-top:auto;
}