前端之家收集整理的这篇文章主要介绍了
css – 浏览器滚动条在我的固定div下,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个100%宽度的固定
标题。
#header {
background: #2e2e2e;
width: 100%;
z-index: 999;
position: fixed;
}
浏览器滚动条在我的固定div下。如何解决?
它因为overflow-x:hidden;在base.css行9
body {
color: #444444;
font: 13px/20px Arial,Helvetica,sans-serif;
overflow-x: hidden; // remove this
}
原文链接:https://www.f2er.com/css/219337.html