基于 Bootstrap 模板统一(http://htmlstream.com/unify/),我想在页面顶部显示一个粘性 div。我当前的解决方案显示 div,但导航栏隐藏在新 div 后面(重叠)。我真的打算将整个页面向下移动 div 的大小,以便导航栏和新 div 完全可见。我的 div 可能看起来像这样:
<div id="savebutton" class="service navbar-fixed-top" style="cursor:pointer;
border-style: groove;background-color:#e74c3c;color:white">
<span class="glyphicon glyphicon-save" style="font-size:24px;display:inline;">
<h4 class="desc" style="display:inline;">SAVE CHANGES</h4>
</span>
</div>
当我使用 时class="top"
,新的 div 会正确显示,但是当我向下滚动页面时,它显然会滚开。top
和的组合navbar-fixed-top
对我不起作用。
简而言之:我怎样才能在导航栏之前有一个粘性 div?该课程navbar-fixed-top
似乎与我的 div 重叠。