我在對齊div的垂直時遇到問題,應該有什麼問題?三個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
的http:// codepen.io/anon/pen/irfJL – Damonsson 2013-03-27 10:12:43
你真的是指垂直嗎?你的例子看起來更像你的意思*水平*。 – nkr 2013-03-27 11:07:37
對不起其橫向 – YoYo 2013-03-27 11:59:17