2013-05-20 37 views
2

我有以下代碼:如何根據頂部邊界將正確的容器與左側容器對齊?

HTML:

<div class="container"> 
    <div class="left"> 
     <div class="panel">My Panel</div> 
    </div> 
    <div class="right"></div> 
</div> 

CSS:

.container { 
    background-color: #000; 
    margin: 130px auto; 
    min-height: 320px; 
    width: 940px; 
    overflow: auto; 
    padding: 0px 10px; 
} 
.left { 
    width: 600px; 
    margin-right: 20px; 
} 
.right { 
    width: 320px; 
    height: 300px; 
    background-color: #999; 
    float: right; 
} 
.panel { 
    background-color: red; 
} 

.right DIV不會在距頂部方面.left格對齊。 .right div顯示在.left div以下。我如何對齊它,以便.right div與.left div 只有在邊距方面對齊?

+0

將'float:left'添加到您的左div? – j08691

回答

1
.left { 
    float: left; /* ADD THIS */ 
    width: 600px; 
    margin-right: 20px; 
} 

只需添加float: left你的左邊股利。

相關問題