three divs not aligned correctly

adagepittepsy

New Member
i have a problem in aligning the div's vertically,what should be problem?here is my html code\[code\] <div class="recentProfiles"><div class="profiles" id="profile1"></div><div class="profiles" id="profile2"></div><div class="profiles" id="profile3"></div></div>\[/code\]css\[code\].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;}\[/code\]i want the three div's to be aligned vertically together inside the parent, here is the demo
 
Back
Top