如何在文档中居中灵活的盒子?

时间:2011-06-07 04:38:59

标签: css css3 flexbox

今天,在FF4中使用灵活的盒子模型时,我注意到我无法使用margin: 0 auto;将容器置于文档中心。

有人知道集中这个容器的方法吗?在Webkit中,它按预期工作。

1 个答案:

答案 0 :(得分:0)

试试这个:

for FF

display: -moz-box;
-moz-box-orient: horizontal;
-moz-box-pack: center;
-moz-box-align: center;

正常情况

display: box;
box-orient: horizontal;
box-pack: center;
box-align: center;