Live data from Hacker News

Solved by Flexbox

philipwalton.github.io

21–30 of 127 posts

Re: Solved by Flexbox

#21

Solved by Flexbox creator here. I wanted to add that if you're using flexbox today, you should also check out this other repo of mine: https://github.com/philipwalton/flexbugs A community-curated list of flexbox issues and cross-browser workarounds for them.

Very smart, it's nice to see you are inviting people to submit workarounds and descriptions of problems in different browser, instead of just asking for bug reports.

This makes feel the project more interesting, because if I hit one of the already covered problems, I already know where I can (probably) find the solution.

Re: Solved by Flexbox

#22
post #12
post #7

Earlier quoted context omitted.

As another user says, no js. 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 ne…

I'd like to read more about flexbox, any link you'd recommend? Especially backwards compatibility and the cross browser/mobile you are mentioning are something I'm interested in. Thanks

https://scotch.io/tutorials/a-visual-guide-to-css3-flexbox-p...

Re: Solved by Flexbox

#24
Thank you, thank you a million times.

I've recently looked into flexbox for a project I started, but all the examples and stuff out there seem very ambiguous (compared to the amount of time I'm willing to invest. I just want things TO WORK). But looking at those docs again with this will help my understanding heaps.

Re: Solved by Flexbox

#28
It's worth mentioning that the flexbox standard has gone through three major revisions, each with very different syntax. To extend the usefulness somewhat to older browsers it's possible to mix the different versions.

See this article at CSS-Tricks for some examples https://css-tricks.com/using-flexbox/

Post reply on HN