我不确定我做错了什么,但我只是想把这个放在中心,同时还能处理响应。
想要让所有div都居中但是边距:auto不起作用..可能缺少一些简单的东西。
我在颜色div中有一些图像,这就是我实际上无法居中的部分。
这是一个jsfiddle。
http://jsfiddle.net/clam22/38L6Y/22/
HTML在
之下<div class="wrapper">
<div class="row">
<div id="red">
<img src="http://boringem.org/wp-content/uploads/2013/01/rock.jpg"/>
</div>
<img src="http://boringem.org/wp-content/uploads/2013/01/rock.jpg"/>
<div id="green">
</div>
<div id="blue">
<img src="http://boringem.org/wp-content/uploads/2013/01/rock.jpg"/>
</div>
</div>
</div>
以下示例CSS
html,body {
background: #FFFFFF;
font-family: "Helvetica", "Arial", "Tahoma"; /* need font default set */
margin: 0 auto;
height: 100%;
width: 100%;
}
.wrapper {
max-width: 96%;
height: 100%;
width: 90%;
}
.row {
float:left;
margin: 0 auto;
width: 100%;
height: 30%;
}
#red {
background-color:red;
height:30%;
width: 30%;
float:left;
}
#green {
background-color:green;
height:30%;
width: 30%;
float:left;
}
#blue {
background-color:blue;
height:30%;
width: 30%;
float:left;
}
答案 0 :(得分:2)
而不是在html,body中创建margin: 0 auto;
,而不是在包装类中使用它
检查以下小提琴: jsFiddle Demo
答案 1 :(得分:2)
答案 2 :(得分:1)
比我第一次意识到的问题还要多。
你的一些百分比没有多大意义。
当你使一个元素说90%时,它是它的父元素的90%。因此,每当你在另一个元素中使用90%的div时,它将比它的父级小10%。
我还将margin:0 auto移动到包装器,因为这似乎更有意义。
请试一试。
html,body {
background: #FFFFFF;
font-family: "Helvetica", "Arial", "Tahoma"; /* need font default set */
height: 100%;
width: 100%;
}
.wrapper {
margin: 0 auto;
height: 100%;
width:90%;
}
.row {
height: 30%;
}
#red {
background-color:red;
height:30%;
width: 33.33334%;
float:left;
}
#green {
background-color:green;
height:30%;
width: 33.33333%;
float:left;
}
#blue {
background-color:blue;
height:30%;
width: 33.33333%;
float:left;
}
答案 3 :(得分:0)
试试这个。
html,body {
background: #FFFFFF;
font-family: "Helvetica", "Arial", "Tahoma"; /* need font default set */
align:center!important;
height: 100%;
width: 100%;
}
答案 4 :(得分:0)