我对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>
答案 0 :(得分:0)
您尚未为#top。
声明“固定”位置尝试:
position: fixed;
top: 0px;