`
peihong-ph
  • 浏览: 21255 次
  • 性别: Icon_minigender_2
  • 来自: 北京
社区版块
存档分类
最新评论

遮盖层覆盖整个页面

阅读更多
html代码:
    <body topmargin="0"> 
     
    <div class="main"> 
    网页主体内容,包含网页其他栏目  
    </div> 
    <!--蒙板--> 
    <div class="mask"></div> 
    <div class="opendiv" > 
        最上层DIV覆盖下面的全部DIV  
    </div> 
    </body> 

css代码:

    .main { width:960px; height:800px; background-color:#FF9966; margin:0px auto;}   
    .mask{ z-index:900; position:fixed!important; position:absolute; left:0px; top:0px; width:100%; height:100%;  background:#000; filter: alpha(opacity=45); opacity: 0.45; -moz-opacity: 0.45; -khtml-opacity: 0.45; }  

    .opendiv{z-index:920;position:absolute;left:50%; top:50%; margin-left:-175px; margin-top:-125px; width:334px; height:180px; background-color: #6699FF; text-align:center; padding-top:20px;} 


注:position:fixed!important;这个地方很重要
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics