I am attempting to create a footer that subtly emerges from behind the div element above it.
One example is the layout of the Pitchfork website, where the footer sits at the bottom of the page.
In my CSS attempt:
#footer {
overflow: hidden;
}
#footer .text {
position: fixed;
}
Alternatively, I could make it fixed and place it at the bottom of the page by setting the total height of the website. However, this approach seems overly complex.
Does anyone have ideas or simple tutorials on how to achieve this effect?