9

我正在尝试使用在 iPad 上工作的 flex 模型来获得一个非常简单的布局。

我有一个包含 div 应该将内容 div 居中。

示例代码在所有浏览器和平台上都按预期运行,除了 iPad(视网膜)上。

在线使用各种 iPad 模拟器不会复制问题。我只能在实际的 iPad 上复制它。这是它的截图:

在此处输入图像描述

任何和所有的建议都将不胜感激。

CSS:

.container { 
width: 510px; 
height: 310px;
background: red; 
display: flex; 
display: -webkit-flexbox;
display: -ms-flexbox;
display: -webkit-flex;
flex-direction: row; 
flex-wrap: wrap; 
-webkit-box-pack: center; 
-moz-box-pack: center; 
-ms-flex-pack: center; 
-webkit-justify-content: center;
justify-content: center; 
-webkit-flex-align: center;
-ms-flex-align: center;
-webkit-align-items: center;
align-items:center; 
border: 2px solid;
padding: 5px;
margin: 0;
}

.content {
float: left;
width: 150px;
height: 150px;
background: green; 
border: 2px solid;
padding: 0;
margin: 0;
}

.content2 {
float: left;
width: 150px;
height: 150px;
background: blue; 
border: 2px solid;
padding: 0;
margin: 0;
}

HTML:

<div class="container">
<div class="content">
<p>Content</p>
</div>
<div class="content2">
<p>Content2</p>
</div>
</div>
4

1 回答 1

18

您缺少 2009 年旧草案中的一些属性(或将它们命名错误)。您的容器 CSS 应如下所示:

http://cssdeck.com/labs/ci9imeed

.container {
  width: 510px;
  height: 310px;
  background: red;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  border: 2px solid;
  padding: 5px;
  margin: 0;
}

但是请注意,没有一个具有 2009 Flexbox 实现的浏览器(Android、旧版 Safari、旧版 Firefox)支持包装。

于 2013-09-26T14:55:23.183 回答