So I have a question pertaining to flexbox support on Kindle devices, and if you have anymore information on overall support in general. It seems that the display:flex
and flex-wrap:wrap/nowrap
properties aren't supported, at least on the earlier kindle fire devices (I've read it is on the newer ones but have no way of testing). It looks as though flex:box
(the older version of flexbox is supported however).
I've taken to using different display properties and then using the @support (display:flex)
or (flex-wrap:wrap)
to target devices that support flexbox in a progressively enhanced manner (if they support flexbox odds are they support media queries) so firefox has no issues on the wrap (also use the url-prefix for -moz-), and kindle fire has no issues overall, but am wondering if there is another solution out there? I mean this method nearly doubles the layout code.
www.caniuse.com only states that opera-mini 5-7 and IE 8-9 lacks support, and has known issues for: (also displays vendor prefixes which I resolve with AutoPrefixer)
Firefox does not support specifying widths in percentages.
IE10 and IE11 default values for
flex
are0 0 auto
rather than0 1 auto
, as per the draft spec, as of September 2013.Firefox does not support flex-wrap, align-content properties.
In IE10 and IE11, containers with
display: flex
andflex-direction: column
will not properly calculate their flexed childrens' sizes if the container hasmin-height
but no explicitheight
property.
and has an article on cross-browser support: http://dev.opera.com/articles/view/advanced-cross-browser-flexbox/
But I have been unable to find anything relating to the kindle devices.