我的网站顶部有一个 div,它是 100% 宽的,并且处于绝对和固定的位置。它的代码如下:
div.header{
height: 60px;
width: 100%;
position: absolute;
position: fixed;
top: 0px;
left: 0px;
background-color: #eeeeee;
}
现在一切正常,但是当用户向下滚动时,网站内容会出现在其后面。有没有办法可以防止这种情况发生?