如何在网页中一个接一个地创建div

How to create div one after the another in a web page

我想做一个 div 一个在另一个下面的网站。如何设置响应页面的高度。div 里面没有内容。我想制作实心边框矩形。这是为了练习目的。

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  background: #906aaf
}

.header {
  width: 100%;
  height: 10%;
  background-color: #7e599e;
  position: fixed;
  z-index: 1;
  top: 0
}

.one {
  width: 50%;
  height: 30%;
  border: 10px solid black;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: auto;
}

.two {
  width: 50%;
  height: 30%;
  border: 10px solid black;
}

.three {
  width: 50%;
  height: 30%;
  border: 10px solid black;
}

.four {
  width: 50%;
  height: 30%;
  border: 10px solid black;
}

.five {
  width: 50%;
  height: 30%;
  border: 10px solid black;
}
<div class="header"></div>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<div class="four"></div>
<div class="five"></div>

如果我正确理解了你的问题,并且你想将第一个 div 放在 html 中,以便在网页上显示在 html 中的下一个 div -

您可以使用 css3 flexbox。在 body 上应用 display:flex,然后在 body 的 children 上使用 order 对它们进行排序。

因此在您的示例中,将此添加到您的 css -

body {
      display: flex;
      flex-direction: column; //(Flexbox defaults to row, apply this to change back to column)
}
.one {
      order: 5;
}
.two {
      order: 1;
} ...

查看 this 了解更多信息。

使用像素代替 %

html,
body {
  width: 100%;
  min-height:800px;
  margin: 0px;
  padding: 0px;
  -webkit-text-size-adjust: none;
  font-size: 62.5%;
  background: #906aaf
}

.header {
  width: 100%;
  height: 80px;
  background-color: #7e599e;
  position: fixed;
  z-index: 1;
  top: 0
}

.one {
  width: 50%;
  height: 240px;
  border: 10px solid black;
  margin-left: auto;
  margin-right: auto;
  height: auto;
  width: auto;
}

.two {
  width: 50%;
  height: 240px;
  border: 10px solid black;
}

.three {
  width: 50%;
  height: 240px;
  border: 10px solid black;
}

.four {
  width: 50%;
  height: 240px;
  border: 10px solid black;
}

.five {
  width: 50%;
  height: 240px;
  border: 10px solid black;
}
<div class="header"></div>
<div class="one"></div>
<div class="two"></div>
<div class="three"></div>
<div class="four"></div>
<div class="five"></div>