0

由于我的导航栏,我必须添加高度与导航栏高度相同的边距。但是,当我添加边距时,我得到一个滚动条,因为 body、html 和容器的高度设置为 100%。如何为导航栏添加边距,而不是获得不必要的滚动条?为什么不起作用margin-bottom: -42px;

body, html {
    height: 100%;
}

.navbar {
    z-index: 10;
}

.container-fluid {
    height: 100%;
    margin-top: 42px;
    // add margin from the nav bar
}
4

2 回答 2

0

试试这个.container-fluid { height: 100%; position:absolute; top:42px; } Absolute 元素从 dom 中删除并准确放置在您指定的位置

于 2013-01-25T00:38:17.427 回答
0
.container-fluid { overflow: hidden; }

这应该隐藏滚动条

于 2013-01-25T08:32:16.610 回答