无法摆脱标头之间的空间

时间:2015-02-19 10:43:34

标签: css angularjs twitter-bootstrap

这似乎是一个CSS问题。我已尝试设置marginline-height等。但我无法缩小标题和角度视图之间的间隙 - 它直接在体内。请在这里参考plunk分享。

enter image description here Plunk:http://plnkr.co/edit/f6ILSWZzzufR4q3qrTW0?p=preview

4 个答案:

答案 0 :(得分:4)

导航栏类的边距为20px

答案 1 :(得分:2)

导航栏中的

从您定义的css中删除边距底部

.navbar
{
position: relative;
min-height: 50px;
/* margin-bottom: 20px;  Remove this from css*/
border: 1px solid transparent;
}

我希望它可以帮助你谢谢

答案 2 :(得分:1)

这是working solution

基本上,您需要将margin-bottom: 0;添加到<nav class="navbar navbar-default">

答案 3 :(得分:1)

<nav class="navbar navbar-default" style="margin:0">

是吗