Bootstrap 3附加。无法删除margin-top

时间:2013-09-29 21:55:29

标签: javascript css twitter-bootstrap twitter-bootstrap-3

在Navbar上使用affix插件时,我似乎无法找到margin-top的来源。

我[这里有一个网站]可以让你更容易看到。

enter image description here

这是我应该使用Javascript的东西吗?我还没有那么先进,所以我可能错过了与之相关的事情。感谢。

1 个答案:

答案 0 :(得分:5)

这不是保证金;相反,.affix位于距视口顶部50px的位置 - 只需将top更改为0:

.affix {
    position: fixed;
    top: 0;
}