Mysterious whitespace in between Bootstrap2 Navbar and row underneath

眉间皱痕 提交于 2019-11-27 08:35:06

You may want to override the margin-bottom: 20px from navbar :

.navbar {
    margin-bottom: 0;
}

Something like that : http://jsfiddle.net/q4M2G/ (the !important is here just to override the style of the CDN version of bootstrap I'm using in the jsfiddle but you should not need to use it if your style correctly overrides bootstrap styles)

Why you put classes: span12 offset3 ?

Bootstrap has 12 columns default. so if you didn't changed it try to put:

span9 offset3 or just span12.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!