My website is currently using a flex box layout and it is rendering correctly with Chrome, Firefox and Internet Explorer 10+.
I am using the Mobile friendly test to validate that my website is mobile friendly.
It is mobile friendly, yay! but there is an issue in their screenshot.
My flex box container has the flex-direction to produce its child items in columns, this works in all major web browsers but googles mobile friendly test is displaying my items in a row structure?
Does this test have full flex box support? Am I doing something wrong that does not target the engine this test uses. I can achieve the correct results by not using flex box but I would like to correct this issue with flex box.
Since I am a perfectionist I cannot allow this to happen even in a tool like the google mobile friendly test.
<div style="display:flex;flex:1 1 auto;flex-direction:row;height:50px;">
<div style="display:inline-flex;flex:1 1 auto;height:100%;background-color:red;"></div>
<div style="display:inline-flex;flex:1 1 auto;height:100%;background-color:green;"></div>
</div>
I created a fiddle with the feature that is broken.