flex-flow does not generate -webkit-box-orient for Android >= 4.1
See original GitHub issueflex-direction: column;
generates -webkit-box-orient: vertical;
but flex-flow: column;
does not for “Android >= 4.1”. I expect both results in same.
Before autoprefixer:
.example1 {
flex-direction: column;
}
.example2 {
flex-flow: column;
}
After autoprefixer:
.example1 {
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
flex-direction: column;
}
.example2 {
flex-flow: column;
}
I have tested these on https://autoprefixer.github.io/
Issue Analytics
- State:
- Created 7 years ago
- Reactions:1
- Comments:5 (3 by maintainers)
Top Results From Across the Web
Flexbox setting for cordova on samsung galaxy tab + android ...
I'm struggling with flexbox css to style a cordova app on a galaxy tab + android 4.1.2. here is the css I use...
Read more >A Complete Guide to Flexbox | CSS-Tricks
Our comprehensive guide to CSS flexbox layout. This complete guide explains everything about flexbox, focusing on all the different possible ...
Read more >Compatibility Standard
This specification aims to describe the minimal set of -webkit- -prefixed CSS properties and DOM APIs that user agents are required to support ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Done 26f5976
But I disabled hack detect for
flex-flow
. I don’t think it is a big problem. I will add more smarter code if somebody really will have problems with it.I choose to apply part of features but understand there is another choice. I will wait for other’s feedback.