我有两个应该彼此相邻对齐的 div 块。第二个块与第一个块完美对齐,除了 Exploder 之外的所有浏览器,它将第二个块向下移动。我尝试将 div 设置为 inline-block,包括另一个 div 中的 div 以及我能想到的所有其他内容,但没有任何效果。您可以在以下网址看到: clubaero.nl
CSS:
.leftbox {
float: left;
position: relative;
width: 220px;
}
.main1 {
position: relative;
width: 480px;
margin: 0 auto;
}
HTML:
<div class = "leftbox">
.... here is content of the 1st div .....
</div>
<div class = "main1">
.... here is content of the 2nd div ....
</div>