question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

flex-flow does not generate -webkit-box-orient for Android >= 4.1

See original GitHub issue

flex-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:closed
  • Created 7 years ago
  • Reactions:1
  • Comments:5 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
aicommented, Jan 19, 2017

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.

1reaction
rch850commented, Jan 11, 2017

I choose to apply part of features but understand there is another choice. I will wait for other’s feedback.

Read more comments on GitHub >

github_iconTop 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 >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found