I am having trouble using flexbox css to design a cordova app on a Galaxy Tab running Android 4.1.2
Here is the CSS code I am currently using:
.container {
/*display: flex;
display: -webkit-box;*/
display: -webkit-flex;
/*justify-content: space-between;*/
-webkit-justify-content: space-between;
width: 83%;
margin-left: auto;
margin-right: auto;
}
The result that I am getting is different from what I expect, as shown in the image below:
https://i.sstatic.net/QCTh8.png
Do you have any idea why the CSS display differs between the emulator and the actual device?
Thank you!