I want it to go:
1 4 7
2 5 8
3 6
try using flex-flow
]]>that’s because the shorthand is setting flex-basis not min-width
]]>Hi there. Not sure if this helps.
Lately I’ve notice that autoprefixer is adding display -webkit-box.
This breaks flex-wrap in ios 8 chrome and safari. Removing it makes it work.
]]>I am running into issues with a section where I have buttons that are supposed to wrap and flex size based on the button text. In Chrome they work perfectly but in the actual device they start to go outside the container and cause sideways scrolling.
This is pretty much the code I am trying to use… it looks great in codepen but not in my app :(
]]>Fixed my problem as well! Thanks!!!
]]>They’re still struggling with flex-wrap
, Saeed. No chance of implementing flex-warp
anytime soon…
LIFE SAVER, thanks @Marcus! This worked for me:
flex: 1 0 50%;
I found that you have to explicity set a width, not only a min-width for it to work properly on safari. ran into the same issue.
]]>