cssPlus
cssPlus copied to clipboard
Flexbox spec not up to date :/
Hello,
Why are you using old syntax fox flexbox container ?
.COLS {
width: 100%;
height: 100%;
/* Old Syntax */
display: -webkit-box;
display: -moz-box;
display: box;
/* New Syntax */
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
box-orient: horizontal;
display: -ms-flexbox;
-ms-flex-direction: row;
/* W3C */
display: box;
}
display: box
is not the W3C actual value. The right value since 2012 is display: flex
.
Many thx.... I'll keep in mind for next version.