I am planning on implementing flexbox solutions to my layout if they are supported and I am going to feature-detect if they are supported with CSS3's @support{...}
queries.
But what should I test is supported? Since feature @support
queries look for support of a given style and then implement styles if supported, of what should I look for support?
In other words, what style do all implementations of flexbox support?
I would think it would be the display:box;
for the 2009 flexbox implementation, display:flexbox;
for the shortlived 2011 implementation, and display:flex;
for the current and final implementation of the spec?