Today I've been working on creating a footer using CSS, but no matter what I tried, I couldn't get it to move to the bottom. Here is the code I'm currently using:
#footer {
position: absolute;
bottom: 0;
width: 100%;
height: 60px;
background-color: red;
}
<div id="footer">
<p>TEST TEXT</p>
</div>
However, this is the result I'm seeing: