Div 放置在具有相对位置的 div 之后是否与相对 div 重叠?

Div placed after a div with position relative overlaps with the relative div?

我对元素的位置有点困惑。

代码如下:

<div class="header">

   





    * {
     margin: 0;
     padding: 0;
     box-sizing: border-box;
     font-family: "Montserrat", sans-serif;
    }
    
    .header {
     width: 100%;
     height: 55px;
     border: 1px solid #e7e7e7;
     background: #f1f0f4;
    }
    
    .nav {
     text-align: right;
    }
    
    navbar ul li {
     display: inline-block;
     padding: 10px;
     font-size: 15px;
     margin: 5px;
     font-weight: bold;
    }
    
    navbar ul li a {
     color: black;
     text-decoration: none;
    }
    
    navbar ul li:hover {
     background: #d3d2d6;
    }
    
    #logo {
     float: left;
     text-decoration: none;
     margin-left: 100px;
    }
    
    #header-img {
     width: 100%;
     height: 700px;
     background: url('./programming.jpeg') no-repeat center /cover;
     opacity: 0.6;
    }
    
    #text {
     position: relative;
     top: 10%;
     text-align: center;
     font-size: 40px;
     color: rgb(0, 0, 0, 1);
     font-weight: bold;
    }
    .body {
    }
    <div class="header">
            <navbar class="nav">
                <ul>
                    <li id="logo"><i class="fas fa-robot fa-lg"> TSV</i><li>
                    <li><a href="#">Home</a></li>
                    <li><a href="#">Blog</a></li>
                    <li><a href="#">About</a></li>
                    <li><a href="#">Contact</a></li>
                </ul>
            </navbar>
            <div id="header-img">
                    <p id="text">Lorem ipsum dolor sit, amet consectetur adipisicing elit. Deserunt, mollitia?</p>
            </div>
        </div>
        <div class="body">
            <h1>TEST</h1>
        </div>

主要问题是 .body div 与 header-img div 重叠,我真的不明白为什么 happening.The header-img div 是相对定位的,我认为它不会破坏元素的流动。 谢谢!

这是因为您将 height: 55px 定义到 .header 元素。 删除它,它应该可以正常工作。

.header {
  width: 100%;
  height: 55px;
  border: 1px solid #e7e7e7;
  background: #f1f0f4;
}

如果您愿意,您可以将移除的高度明确设置为导航。

.nav {
  text-align: right;
  height: 55px;
  width: 100%;
}

这是因为您的 <header> 元素封装了您的 <navbar><div id="header-img">,但是您的 <header> 元素设置为 height: 55px;,所以您的 <div id="header-image">height: 700px,在 <header> 之外溢出,导致此行为。

.header { 中删除 height: 55px;

.header {
    width: 100%;
    height: 55px;  //REMOVE THIS
    border: 1px solid #e7e7e7;
    background: #f1f0f4;
}