我有一个 100% 宽度的固定标题。
#header {
background: #2e2e2e;
width: 100%;
z-index: 999;
position: fixed;
}
浏览器滚动条在我的固定 div 下。如何解决?
最佳答案
这是因为 base.css 行号 9 中的 overflow-x: hidden;
body {
color: #444444;
font: 13px/20px Arial,Helvetica,sans-serif;
overflow-x: hidden; // remove this
}
关于css - 浏览器滚动条在我的固定 div 下,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13028584/