tpr Posted May 24, 2016 Posted May 24, 2016 Yes I do, using this mixin for Grid (and no CSS framework at all): https://ajy.co/the-simplest-sass-flexbox-grid-ever 3
diogo Posted May 24, 2016 Posted May 24, 2016 Not yet on real projects, but I won't wait much longer. By the way, this is a great way of learning how to use flexbox http://flexboxfroggy.com/ 1
onjegolders Posted May 24, 2016 Posted May 24, 2016 Using it a lot but depends on the project, some you can get away with it (apps for modern browsers etc). Interesting that the most prominent polyfill is nearly ready for an update which may make it usable everywhere https://github.com/10up/flexibility/issues/53#issuecomment-220657562 2
LostKobrakai Posted May 24, 2016 Posted May 24, 2016 I'm not using it for global layout, but sometimes for micro positioning or e.g. places, where boxes should be of equal height. So the things which could break without affecting functionality, but rather aestetics. 2
OrganizedFellow Posted May 24, 2016 Author Posted May 24, 2016 Yes I do, using this mixin for Grid (and no CSS framework at all): https://ajy.co/the-simplest-sass-flexbox-grid-ever Yes, I think I saw this posted elsewhere on here. There appears to be no content.
OrganizedFellow Posted May 24, 2016 Author Posted May 24, 2016 I found this recently https://github.com/leejordan/reflex
DaveP Posted May 24, 2016 Posted May 24, 2016 This - https://www.cutestrap.com/ - uses flexbox and looks interesting. 2
matjazp Posted May 26, 2016 Posted May 26, 2016 Interesting reading: https://jakearchibald.com/2014/dont-use-flexbox-for-page-layout/ 1
Bill C Posted June 25, 2016 Posted June 25, 2016 Have you come across this in your travels? http://flexboxfroggy.com/ I thought it was a funny drill to get familiar the various flex settings. Also came across this write up https://css-tricks.com/snippets/css/a-guide-to-flexbox which looked like a good read and reference. 1
pwFoo Posted June 26, 2016 Posted June 26, 2016 I played with flexbox and tried to use it. Works fine with modern browsers, but IE10 doen't work (should support old syntax...) can't get flexibility work (IE 8/9 flexbox support) Thanks for the link https://github.com/StefanKovac/flex-layout-attribute. Looks nice and simple. Because of my tests I created an simple flexbox css file which seems to work fine with modern browsers and also allow nested flexboxes, but without IE <=10 support 1
pwFoo Posted June 27, 2016 Posted June 27, 2016 Searched about possible solutions to use flexbox cross browser. It would be possible with some IE polyfills / workarounds (float, inline-block and maybe Columnizer-jQuery-Plugin) and could be used dependent on the target group. If IE support is important I will stay with pocketgrid which is simple and works fine. IE <= 10 is end of life / support!
Recommended Posts