Browsers scrollbar is under my fixed div

后端 未结 10 2205
抹茶落季
抹茶落季 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 09:45

    its because the overflow-x: hidden; in base.css line number 9

    body {
        color: #444444;
        font: 13px/20px Arial,Helvetica,sans-serif;
        overflow-x: hidden; // remove this 
    }
    

提交回复
热议问题