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

Dor Sarel
Dor Sarel
9,987 Points

footer comes up while floating main div

Hi i am trying to create a landing page for an app at my work. but stuck while making the page responsive.

on wide screens i used the float to put img and text one next to each other, but it caused the footer to be pushed up and it is not in the bottom of the page anymore.

can someone please advise me what i should do?

1 Answer

Shane Oliver
Shane Oliver
19,977 Points

Add a class to your main container to clear your floats

.clearfix::before, .clearfix::after { content: ''; display: table; }
.clearfix::after { clear: both; }