0

What I mean is that a footer will always be at the bottom of the browsing window, even if there is a lot of content and normally the footer will be out of view, not the usual "sticky footer" where the footer will always be after the content.

I could achieve this with frames, but how would I do it in a cleaner way with CSS?

apscience
  • 7,033
  • 11
  • 55
  • 89

1 Answers1

3
.the-other-kind-of-sticky-footer { position:fixed; bottom:0; }
Lowkase
  • 5,631
  • 2
  • 30
  • 48