三星Galaxy选项卡上的cordova Flexbox设置+ android 4.1.2

时间:2013-11-20 23:26:28

标签: android css cordova flexbox

我正在努力使用flexbox css来设置galaxy选项卡上的cordova应用程序+ android 4.1.2

这是我使用的CSS

.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;
}

,结果如下

enter image description here

当我期待那个

enter link description here

为什么css在仿真器和真实设备之间有所不同?

谢谢!

1 个答案:

答案 0 :(得分:3)

.container {
    display: -webkit-box;
    -webkit-box-pack: justify;
    width: 83%;
    margin-left: auto;
    margin-right: auto;
}

成功了