2013-09-29 61 views
4

我似乎無法找到在我的導航欄上使用詞綴插件時margin-top來自哪裏。Bootstrap 3詞綴。無法刪除margin-top

我有[一個網站在這裏],可能會更容易看到。

enter image description here

這是不是在我應該使用Javascript?我在這方面還沒有很進步,所以我可能錯過了一些與此相關的事情。謝謝。

回答

5

這不是保證金;而是.affix被定位爲50像素距視口頂部 - 只是改變top爲0,而不是:

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

哦,我看到使用頂部,而不是邊距的扔我的感謝! – jackdh