I want the footer at the bottom of the page at all times. However, when I use position: absolute;, it goes to the bottom of the page but it covers content that doesn't fit in the page. This is the current CSS styling:
.footer {padding: 2px;
     background-color: #eeeeee;
     color: #0f0f0f;
     text-align: justify;
     font-size: 20px;
     width: 99%;
     bottom: 10px;
     border-radius: 10px;}
Can anyone help me? Thanks