+ 1
I cannot scroll down the footer of my website. How can I fix it?
4 Answers
+ 10
Attach the code.
+ 2
HTML
<footer>
<p> Copyright © 2020 | Sri Lanka </p>
</footer>
CSS
footer {
position : fixed;
left : 0;
bottom : 0;
width :100%;
text-align : center;
font size :10px;
margin-bottom: 10px;
color : white;
}
0
Thanks, I will try it.