Solved by Flexbox
philipwalton.github.io
Solved by Flexbox
1–10 of 127 posts
Re: Solved by Flexbox
#2Re: Solved by Flexbox
#3What layouts does Flexbox solve that Cassowary[0] or GSS[1] layout doesn't? [0] http://en.wikipedia.org/wiki/Cassowary_(software) [1] http://gridstylesheets.org/
Re: Solved by Flexbox
#4What layouts does Flexbox solve that Cassowary[0] or GSS[1] layout doesn't? [0] http://en.wikipedia.org/wiki/Cassowary_(software) [1] http://gridstylesheets.org/
Re: Solved by Flexbox
#5What layouts does Flexbox solve that Cassowary[0] or GSS[1] layout doesn't? [0] http://en.wikipedia.org/wiki/Cassowary_(software) [1] http://gridstylesheets.org/
Built-in browser support
With https://wiki.css-houdini.org/ there is a chance you could implement custom layout in CSS.
Re: Solved by Flexbox
#6Re: Solved by Flexbox
#7What layouts does Flexbox solve that Cassowary[0] or GSS[1] layout doesn't? [0] http://en.wikipedia.org/wiki/Cassowary_(software) [1] http://gridstylesheets.org/
Pure CSS runs in the browser without a get request (other than the CSS file you are already using, obv.) so it eliminates the need for a grid system like Bootstrap, 960gs etc. The 'grid' is there in the CSS and html where it is meant to be, without the need for @media queries with 10 decimal points and 15 font sizes. It also provides more layout options than currently exist without the need for hacky solutions.
How useful the linked site is right now is questionable though. If you want a IE8+ cross browser & mobile site to rely on flex-box ... it can be done and quite easily, but not with the skeleton examples on that page (but they do point that out themselves).
Re: Solved by Flexbox
#8Re: Solved by Flexbox
#9In the "individual grid sample" why have you chose to make a 2/3rds and 1/3rd column with divs respectively
flex:1; width:33.3333333%
instead of leveraging the ratio flex:2; flex:1