弹性盒的问题

时间:2014-08-24 20:12:52

标签: css firefox

任何人都可以帮助我使用flexbox for Firefox。我的网站在Safari和Chrome中看起来很棒 但Firefox并没有对弹性盒预先修复做出反应。

此代码有什么问题。它在Firefox中不适合我。

我的网站是:            http://maliganisinj.com/header1.html 请在Chrome和Firefox中查看它,看看它有多糟糕。

.nav {

display: -webkit-box;
display: -moz-box;
display: -ms-flexbox;
display: -webkit-flex;
display: flex;

-webkit-box-direction: normal;
-moz-box-direction: normal;
-webkit-box-orient: horizontal;
-moz-box-orient: horizontal;
-webkit-flex-direction: row;
-ms-flex-direction: row;
flex-direction: row;

-webkit-box-pack: end;
-moz-box-pack: end;
-webkit-justify-content: flex-end;
-ms-flex-pack: end;
justify-content: flex-end;

}

0 个答案:

没有答案