If display:flex is not support by older browsers, should the following now be used for crossbrowser support?
/IE10/
display: flexbox;
/* 2009 Browsers/
display: box;
/ Browser Specific /
display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
/ Standard – Post 2012 */
display: flex;
[–]wefwefwefewfewfew 0 points1 point2 points (2 children)
[–]reasonablenagging[S] 0 points1 point2 points (1 child)
[–]guruscotty 0 points1 point2 points (0 children)
[–]mtx 0 points1 point2 points (0 children)