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

Can I apply flexbox to a grid layout I created? I would like to set equal height columns to page

I know that flexbox ignores floats, but can I just use it to set equal height columns in my grid template?

1 Answer

You could use Flexbox but it would largely be determined by the browser support you need to have, Flexbox is not widely supported yet (http://caniuse.com/#search=flexbox) mainly in Internet Explorer. If you need equal heights with a bit more extensive browser support you might want to look into something like the matchHeights plugin (http://brm.io/jquery-match-height/) granted this is a JS approach so you will also want to base the decision to use it on your needs, but it is an option.