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 Techniques Flexbox Layout Build a Navigation with Flexbox

Brendon Brooks
Brendon Brooks
8,802 Points

Where to start: Flexbox or Media Queries?

In terms of workflow, after creating the basics of the CSS layout, does one start with creating media queries first or flexbox? It seems that they're both heavily related

1 Answer

Tim Knight
Tim Knight
28,888 Points

Brendon,

They can sometimes seem related because flexbox can automatically flex and change as the device size changes, but in reality they're very different. You will likely use media queries within your flexbox code to customize how flexbox behaves for that media size. What I would suggest would be to get a handle on how media queries work first. From there you'll start to see how you can manipulate any layout on various media sizes regardless of how you implement your layout... be it a floating grid or a flexbox layout.