发现重复:Browsers scrollbar is under my fixed div
我将导航栏的位置设置为position: fixed
,当我向下滚动网站时,导航栏始终位于页面顶部(很棒)。但是,导航栏的右端覆盖了滚动条(如上图所示):
我试图通过设置position: absolute; top: 0px; left: 0px
来解决此问题,结果是,在Mac上,滚动条出现在导航栏的前面,但是在PC上,导航栏仍然覆盖了滚动条的一部分
有人可以帮助我解决这个问题吗?
解决方案: 删除“溢出:自动”
body, html {
height: 100%;
width: 100%;
margin: 0;
/*overflow: auto;*/
}