标题图片和导航栏之间存在一个奇怪的差距,我不知道如何删除它!
<!-- some css settings -->
#banner {
width: 100%;
height: 100px;
margin-bottom: 0;
margin-top: 0;
}
#nav_bar {
background-color: #202020;
margin-bottom: 0;
margin-top: 0;
z-index: 100;
}
答案 0 :(得分:3)
就个人而言,我只是在导航栏上留下一个负余量,你很高兴:
#nav_bar {
background-color: #202020;
margin-bottom: 0;
z-index: 999;
margin-top: -4px;
}
答案 1 :(得分:1)
答案 2 :(得分:-1)
检查以确保标题没有任何填充或边距。这可能会导致它下面有额外的空白区域。