Mysterious whitespace in between Bootstrap2 Navbar and row underneath

前端 未结 2 505
梦毁少年i
梦毁少年i 2020-12-01 12:21

I am using Bootstrap\'s Navbar and Bootsrap\'s grid to display a Navbar with a image immediately underneath the Navbar. However, for some reason there is whitespace between

2条回答
  •  一向
    一向 (楼主)
    2020-12-01 12:36

    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)

提交回复
热议问题