我有一個問題得到2 div並排對齊。根據我的理解,使用「float:left」應該可以做到,但它不會 - div會出現在彼此之上。我雖然可能是瀏覽器,但我嘗試了FF,Opera和IE,結果是一樣的。對齊2 div並排
這裏是我的代碼
<head>
<style>
div.container{
position: relative;
width:800px;
height: 1000px;
background-color: red;
overflow: hidden;
}
div.banner{
position: relative;
align:left;
width: 800px;
height: 100px;
float:left;
background-color: blue;
clear:both;
}
div.navBar{
position: absolute;
width: 200px;
height: 300px;
float:left;
background-color: yellow;
clear: left;
}
div.content{
position: absolute:
width: auto;
height: auto;
float:left;
background-color: orange;
clear: right;
}
</style>
</head>
<body>
<div name="banner" class="banner">
This will be the banner
</div>
<div name="container" class="container">
<div name="navBar" class="navBar">
This will be the navbar
</div>
<div name="content" class="content">
This will be the content
</div>
</div>
</body>
所有div是不同的顏色,所以它更容易地看到究竟會去哪裏。
其中的div都出現在彼此的頂部?你想要哪一個並排? – mergesort 2012-02-19 15:54:37
在此處可以正常工作http://jsfiddle.net/7HDtU/您是否將身體或瀏覽器窗口限制爲小於1000像素的寬度?那會導致他們看起來堆疊而不是並排? – JaredMcAteer 2012-02-19 15:55:04
'div.content {position:absolute:...'''有錯誤。它應該是';'而不是':' – 2012-02-19 15:59:41