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

Mani Saini
Mani Saini
3,101 Points

Clearing Floats

Hi Guys, i just wanted to confirm if this is possible? instead of using the below code which is : .group:after { content: ""; display: table; clear: both; Can we just use "clear-both" in secondary content class?

1 Answer

Daryl Carr
Daryl Carr
18,318 Points

As far as I understand it, clear:both will make the an element clear the floated element whereas the clearfix is used only to ensure that an element encloses items.

I.e. if you want to put a p after a floated img you would use clear:both and if you want a div to grow to enclose the image then you would use a clearfix.

Hope this helps!