gpt4 book ai didi

html - 导航栏上方的间距,在使用标题和段落时出现

转载 作者:行者123 更新时间:2023-11-28 08:36:48 25 4
gpt4 key购买 nike

我一直试图让导航栏的空间消失,但​​我不知道问题出在哪里。这些代码在没有任何标题或段落时有效

演示:http://jsfiddle.net/n89s25q6/

html

<div id="content">
<h2>Content</h2>
</div>

感谢帮助

最佳答案

问题是nav元素是 float 的,next元素包含h2元素,默认有margin。

要修复它,您可以:

  • 清除 float :

    #content {
    clear: left; /* or `clear: both` */
    }
  • 移除边距:

    #content > h2 {
    margin: 0;
    }
  • 移除 float :

    #headernav {
    float: none; /* default value */
    }
  • 防止边距崩溃,例如与

    #content > h2 {
    display: inline-block;
    }

关于html - 导航栏上方的间距,在使用标题和段落时出现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28000693/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com