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 trialShea Lewis
6,702 PointsFloat not working for footer
My content keeps floating over my footer. Even though I have
/* float clearfix---------------*/
.group:after { content: ""; display: table; clear:both; }
At the bottom of my css. ITs working for everything except the footer.
2 Answers
Stéphane Diez
19,350 PointsTry this
.clearfix:after { content: "."; clear: both; display: block; visibility: hidden; height: 0px; }
Shea Lewis
6,702 PointsFigured it all out!