My goal is to have the footer take up the entire remaining bottom space. Currently, I am using the following CSS for the footer:
clear: both;
float: left;
background-color: #1F1102;
color: #E4F2FA;
min-height: 60px;
font-family: Verdana, Geneva, sans-serif;
font-size: 10px;
padding: 0;
padding-top: 10px;
text-align: left;
width: 100%;
min-width: 1000px;
margin: auto;
The current result is:
As you can see, the black section only takes up the minimum height specified. I want it to fill the entire remaining space after it [indicated by question marks]. What changes do I need to make in order to achieve this?
Note: I prefer not to use position:fixed
to make it stick to the bottom.