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

flexbox and css grid vs floats and display modes

hey i know there is a next course about flexbox but i can't help but wonder after learning layouts with float and the display property i've seen lots of articles about how flexbox or css grid are superior and the modern way of designing layouts so is that true ? in which case should you consider any of the latter ? ps i know nothing about css grid except that it is efficient for laying out website

1 Answer

Steven Parker
Steven Parker
229,644 Points

Flexbox and grid are both modern methods that are good replacements for "float" as they overcome several of the limitations of floats.

But neither of them is intended as a replacement for the other, and in fact they work very well in combination with each other. I recommend learning them both, and starting with flexbox.