1

我对 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>

问题示例

4

1 回答 1

0

您尚未声明#top 的“固定”位置。

尝试:

position: fixed;
top: 0px;
于 2013-06-14T12:34:12.990 回答