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

Gap between footer and bottom image incredibly small?

My footer seems to be almost hugging the next lowest image I have on my site. How do I increase the space between them?

1 Answer

Himanshu Khiyani
Himanshu Khiyani
5,490 Points

You should try using top margin for your footer.

.footer{ margin-top: 20px; }

Also make sure that your footer is a block element.

If that dose not works, you are possibly having a margin collapse issue. To solve this try giving a little padding or border to your foote

Thanks mate, really appreciate it!