2010-08-23 79 views

回答

1

試試這個:

CSS:

#menuOverlay { 
    position:fixed; /*or absolute*/ 
    top:0; 
    left:0; 
    width:100%: 
    height:30px; 
    background:green; 
    z-index: 999; /* or greater value */ 
} 

HTML:

<div id="menuOverlay"> 
    menu items here .... 
</div> 
+0

謝謝!工作得很好 – tylercomp 2010-08-23 04:48:41

0

在你的CSS文件 -

#overlaymenu { 
    z-index: 1000; 
    position: absolute; 
    left: 0; 
    top: 0; 
    width: 100%; 
    height: 20px; 
    background: #000; 
    color: #FFF; 
} 

在HTML -

<div id="overlaymenu">My menu's content!</div> 

希望幫助!

相關問題