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 Page Layout with the Float Property The Float Challenge Solution

main-footer::before clear solution help

.main-footer::before { content: ""; display: table; clear: both; }

^ I'm trying to clear the footer thats floating into the primary-col and seconday-col div which are located inside the .wrap div container i played around with some different display properties but cant seem to find a solution.


.wrap::after { content: ""; display: table; clear: both; }

^ This solution above works to clear that but i was trying to also get a solution to clear it using the footer and the ::before pseudo class which i cannot figure out.