Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

CSS CSS Layout Basics Getting Started with CSS Layout Creating a Sticky Footer

SeHyun Choi
SeHyun Choi
3,441 Points

Sticky Footer

using css calc function seems bit too tricky for me. Is there easier version?

footer { width:100%; position:fixed; top:91%; }

is this a viable alternative?

1 Answer

Steven Parker
Steven Parker
229,786 Points

I actually prefer using fixed positioning to "stick" something on the screen. Just be sure to provide an adequate bottom margin or padding to the scrollable element or the footer will obscure the last bit of the content.