Browsers scrollbar is under my fixed div

后端 未结 10 2260
抹茶落季
抹茶落季 2020-12-05 09:25

i have a fixed header with 100% width.

#header {
background: #2e2e2e;
width: 100%;
z-index: 999;
position: fixed;
}

browsers scrollbar is u

10条回答
  •  刺人心
    刺人心 (楼主)
    2020-12-05 10:00

    This can be solved using 2 ways as below:

    1.First caculate the scrollbarWidth=el.offsetWidth - el.clientWidth

    2.Set fixed div left=scrollbarWidth

提交回复
热议问题