Hexalys
Hexalys
Basically you need to exclude the fixed box from being a flex box, that solves it for Safari too. https://github.com/philipwalton/solved-by-flexbox/issues/14#issuecomment-25765023 In addition, note the following Firefox bug with percentages: https://github.com/doctyper/flexie/issues/52
I am also getting that error on IE `8.0.6001.19518` while trying `2.0beta1` (using htc) on a new site. Paths are all correct on the same domain. Here is the snapshot...
To go short, but in a different direction; I would suggest `assist`. Which can be both a noun and a verb, aligning more with the "Assistive" part of accessibility. And...
Slightly aside from this issue: For those interested in a server side alternative to _svg4everybody_. You may want to have a look at: http://codepen.io/hexalys/details/epErZj That can fix, or at least...
FYI, this has been fixed by Modernizr [with a new test](https://github.com/patrickkettner/Modernizr/blob/master/feature-detects/css/pointerevents.js) preventing all false positives in Opera Mini and IE 9-10.
In my view, the main polyfill needed at this time is `flex-wrap` support for Safari 5'ish level, including older and current android < 4.4 stock browsers. For simple cases, IE8...
I actually now resolved this by applying '-webkit-box-flex' with an css :not() selector with something like this: .Grid > .Grid-cell:not(.u-1of3){ -webkit-box-flex: 1;/\* Safari 3-6*/ } That way, Safari respect the...
Actually, it turns out your demo is missing the display: -webkit-box; necessary for Safari. That's all there is to it... I got confused there because of it. You need to...
That's theoretically in the autoprefixer specs AFAIK too. Though your demo site http://philipwalton.github.io/ does not have them, and the site displays the warning: "Your browser does not support Flexbox. Parts...
It's okay for the context of your showcase I guess. Though IMO [autoprefixer](https://github.com/ai/autoprefixer) should be adding it and saying the Flexbox support is only 'partial', instead of saying it's not...