2012-10-30 128 views
1

以上內容我想acheive定位: enter image description here如何定位頁眉和頁腳

的屬性如下:

.header, .footer { 
    background: #666; 
    height: 100px; 
} 

.content { 
    background: #ccc; 
    margin: -25px auto; 
    min-height: 500px; 
    width: 960px; 
} 

所以 enter image description here

現在我有以下內容位於頁腳下方的問題,我不知道如何解決。 z-index不起作用。

我的HTML:

<div class="header"></div> 
<div class="content"></div> 
<div class="footer"></div> 

回答

4

試試這個

.header, .footer { 
    background: #666; 
    height: 100px; 
    position: relative; 
    z-index: 1; 
} 

.content { 
    background: #ccc; 
    margin: -25px auto; 
    min-height: 500px; 
    width: 960px; 
    position: relative; 
    z-index: 100; 
} 
+0

感謝,這樣的作品,生病接受你的答案在5分鐘 – UAMoto