You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Just noticed you don't like PRs. Flexbox is one of those weird ones where the syntax changed mid-specification. The current implementation of the flexbox prefixer in Velocity only creates the following prefixes:
.class {
display: -ms-flex; /* This isn't the right setting for IE */display: -webkit-flex; /* NEW - iOS7+ */display: flex; /* Chrome */
}
I would expect that it provide all supported values:
Just noticed you don't like PRs. Flexbox is one of those weird ones where the syntax changed mid-specification. The current implementation of the flexbox prefixer in Velocity only creates the following prefixes:
I would expect that it provide all supported values:
Ideally, providing
display: 'flex'
should generate all of these values for full browser support.The text was updated successfully, but these errors were encountered: