DEV Community

Discussion on: Why you should already be using CSS Grid

Collapse
 
patricklafferty profile image
Patrick Lafferty

Instead of thinking of Grid vs Flexbox, think in terms of Grid + Flexbox. Use grid for the global page layout and use flexbox for smaller localized areas. This gives you the best of both worlds. That being said, Grid is absolutely wonderful and you should definitely start using it when possible.

Collapse
 
willamesoares profile image
Will Soares

Hey Patrick, you are right! Both CSS Grid and Flexbox have their advantages and use cases. Trying to get the most out of those two technologies it's surely something to bear in mind. Thanks for pointing that out ;)