当.navbar-fixed-top
存在时,页面无法垂直滚动。删除该类后,页面滚动正常。 Here's a live example
我已经尝试删除该类并将固定属性应用于我自定义的其他类navbar-dark。任何固定的定位似乎都会打破滚动。任何有关解决方案的建议都将不胜感激。
这是应用类的行似乎打破了滚动:
<div class="navbar navbar-default navbar-fixed-top navbar_dark" role="navigation">
答案 0 :(得分:1)
您将<body>
设置为overflow:hidden;
。它位于style.css第35行。您需要将其更改为overflow:visible;
,然后您才能再次滚动页面。
更改此内容:
body {
font-family: 'Oxygen','sans-serif';
font-size: 1.8em;
line-height: 2em;
overflow: hidden;
}
对此:
body {
font-family: 'Oxygen','sans-serif';
font-size: 1.8em;
line-height: 2em;
overflow: visible;
}