我在调整div的垂直时遇到问题,应该有什么问题?
这是我的HTML代码
<div class="recentProfiles">
<div class="profiles" id="profile1">
</div>
<div class="profiles" id="profile2">
</div>
<div class="profiles" id="profile3">
</div>
</div>
CSS
.recentProfiles
{
width:950px;
height:200px;
border:2px dotted green;
margin-left:20px;
margin-top:10px;
}
.profiles
{
width:300px;
height:190px;
border:2px dotted black;
}
#profile1
{
float:left;
clear:both;
position:relative;
margin-left:5px;
margin-top:5px;
}
#profile2
{
position:relative;
margin-left:310px;
margin-top:5px;
}
#profile3
{
position:relative;
margin-left:620px;
margin-top:5px;
}
我希望三个div在父级内部垂直对齐,这里是demo
答案 0 :(得分:1)
我不确定为什么你需要这么多的冗余代码来实现你所描述的内容,只需这样做:
.recentProfiles
{
width:300px;
border:2px dotted green;
margin-left:20px;
margin-top:10px;
}
.profiles
{
width:300px;
height:190px;
border:2px dotted black;
}
答案 1 :(得分:0)
答案 2 :(得分:0)
让所有框都向左浮动(float: left
)并删除所有边距属性,如下所示:http://jsfiddle.net/2ABmU/
答案 3 :(得分:0)
你明白了浮动错误。这是新代码:http://cdpn.io/AvJqI
<强> HTML 强>
<div class="recentProfiles">
<div class="profiles" id="profile1">
</div>
<div class="profiles" id="profile2">
</div>
<div class="profiles" id="profile3">
</div>
<div class="floatClear"></div>
</div>
<强> CSS 强>
.recentProfiles
{
width:950px;
height:200px;
border:2px dotted green;
margin-left:20px;
margin-top:10px;
}
.profiles
{
width:300px;
height:190px;
border:2px dotted black;
}
#profile1
{
float:left;
position:relative;
margin-left:5px;
margin-top:5px;
}
#profile2
{
float:left;
position:relative;
margin-left: 10px;
margin-top:5px;
}
#profile3
{
float:left;
position:relative;
margin-left: 10px;
margin-top:5px;
}
.floatClear {
clear: both;
}
答案 4 :(得分:0)
那是因为你的利润。如果您将clear:both
关闭profile1
,然后将float: left
添加到所有配置文件中,请取消这些边距。