单击内部链接时Opera中消失的div

时间:2012-11-09 13:43:56

标签: css

我对Opera中消失的div有疑问 当您点击链接时,标题会消失...
请帮忙。

 <style type="text/css">

  body {
  height: 100%;
  border: 0;
  margin: 0;
  padding: 0;
  font-size: 100%;
}

#top { 
    position:fixed;   
    height: 60px; 
    margin: 0; 
    background-color: #ccc;
    width:100%; 
    z-index:100;
    }

#content {
    position:relative; 
    z-index:0;
    padding-top:70px;   
}

 h1 {
    font-weight:bold;
    padding-top: 70px;
}

 </style>

problem example

1 个答案:

答案 0 :(得分:0)

您尚未为#top。

声明“固定”位置

尝试:

position: fixed;
top: 0px;