I have html
<head>
</head>
<body>
</body>
<footer>
</footer>
now what I want is the footer stay at the very end of the page and the user should scroll to see it. would you help me please?
I tried :
footer{
position: fixed;
bottom:-100px;
height: 100px;
left: 0;
width:100%;
text-align: center;
}
but setting height:100px and bottom:-100px get it hidden while I want the user to be able to scroll down to see it