我有一個應用程序,打開了幾個窗口。內容是由DOM使用jQuery動態創建的,但這些類是靜態的。與CSS定位問題
問題是底部div粘貼在頂部div底部而不是底部(請參見下圖)。
有什麼顯然我在這裏失蹤?
.containerDiv {
position: absolute;
left:50px;
top: 60px;
margin-left: auto;
margin-right: auto;
resize: both;
overflow: auto;
}
.topDiv {
position: relative;
top: 0;
height: 60px;
width: 100%;
overflow: hidden;
}
.middlediv {
position: relative;
width: 300px;
height: 300px;
background: red;
}
.bottomDiv {
position: relative;
bottom: 0;
}
這是它的外觀:
--------------------
topDiv
--------------------
bottomDiv
--------------------
middleDiv
--------------------
你的html看起來像什麼? – 2011-12-22 00:01:01