StefanKovac / flex-layout-attribute

HTML layout helper based on CSS flexbox specification —
http://progressivered.com/fla/
MIT License
712 stars 57 forks source link

Browser Support?? #3

Closed james-brndwgn closed 8 years ago

james-brndwgn commented 8 years ago

What browsers has this been tested on? Perhaps future versions could have flexibilty integration?

StefanKovac commented 8 years ago

@james-brndwgn Browser support for FLA is the same as for flexbox — FLA is built with autoprefixer set to 'last 2 version'.

I don't understand second question.

james-brndwgn commented 8 years ago

Thank you, good to know about autoprefixer. This is what I meant by Flexibility: https://github.com/10up/flexibility - But if browser support is last 2 versions then it won't apply. Thanks for your response.

StefanKovac commented 8 years ago

Oh, I didn't know about that polyfill. You can try adding their respective declarations to FLA css if you want to try.

About polyfill — It looks like too much effort to support flexbox for older IE. If you really have to support those browser I would suggest you to stay away from flexbox completely, create separated/dedicated CSS (for layout use floats or table) and conditionally load them for this browsers only.

Thanks @james-brndwgn