2012-04-07 91 views
2

在我的HTML頁面內容傳球,我固定我的頭有:在固定頭

position : fixed 

當我向下滾動,然後我的頁面傳過來的標題的內容。我怎樣才能解決這個問題?

+2

更改z-index的? – 2012-04-07 21:27:30

回答

8

假設你的HTML如下:

<div id="header">...</div> 
<div id="content">...</div> 

試試下面的CSS:

<style type="text/css"> 
    #header { 
    position:fixed; 
    z-index:1; 
    } 
    #content { 
    position:relative; 
    z-index:2; 
    } 
</style>