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

Andrew Miller
Andrew Miller
14,295 Points

Flexbox Browser support?

Hi there-

I am on my way to building my first site and wanted to use Flexbox for some of the layout because most of it is pretty basic and from what I have read online, it seems to be the best way to go for my layout.

I can’t seem to find any information to confirm if it is fully supported yet or if I will still need to use the vendor prefix to ensure support. Does anyone know if Flexbox is fully supported and also, what is the best source to use in order to check when nonstandard CSS properties are standardized?

Thanks!

3 Answers

caniuse.com is a great resource for checking browser compatibility. Currently, most flexbox properties are supported in Chrome, FF and IE 10+.

Mikkel Rasmussen
Mikkel Rasmussen
31,772 Points

You can use this script - it will write all the prefixes to flexbox depending on which browser they are using :)

http://leaverou.github.io/prefixfree/

Andrew Miller
Andrew Miller
14,295 Points

Thanks all! This helps!