提问者:小点点

造成问题的相对位置我的容器在橱柜下面,为什么会发生这种情况?


  • 我的其他内容被推到展示柜下面。
  • 我给你完整的代码,请告诉我我做错了什么。
  • 我已经给出了google drive的链接,其中包含屏幕截图。

null

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  width: 80%;
  margin: auto;
}

.d-4 {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 600;
}

.lead {
  font-size: 1.8rem;
  font-weight: 300;
}

.relative {
  position: relative;
  top: 0;
  left: 0;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  font-size: 17px;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

nav>a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  padding: 0 20px;
}

nav ul a {
  padding: 15px;
  margin: 0 5px;
  color: #fff;
  border-radius: 4px;
}

nav ul a:hover {
  background: rgba(0, 0, 0, 0.6);
}

.showcase {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('https://cdn.pixabay.com/photo/2017/06/24/23/03/railway-2439189_1280.jpg') no-repeat center center/cover, rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
<!DOCTYPE html>
<html lang="en">

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Website | Getting Started</title>
  <!-- My CSS -->
  <link rel="stylesheet" href="css/style.css">
</head>

<body>


  <div class="relative">
    <nav>
      <a href="#"><img height="70" src="img/logo.png" alt="Logo"> &nbsp;Title</a>
      <ul>
        <a href="#">Home</a>
        <a href="#">Login</a>
        <a href="#">SignUp</a>
        <a href="#">Dashboard</a>
      </ul>
    </nav>
    <div class="showcase">
      <h1 class="d-4">Welcome to my Website.</h1>
      <p class="lead">
        Way of heaven is here.
      </p>
    </div>
  </div>

  <div class="container">
    <h1 class="text-center">Contact Us</h1>
    <form id="footer" class="control">
      <input class="input" type="text" id="name" placeholder="Enter your Name">
      <input class="input" type="email" id="email" placeholder="Enter your E-mail">
      <input class="input" type="number" id="mob" placeholder="Enter your phone No.">
      <input class="input" type="textr" id="subject" placeholder="Enter your subject">
      <textarea class="textarea" placeholder="Enter your message"></textarea>
    </form>
  </div>


</body>

</html>

null

https://drive.google.com/file/d/1hn4-dyx0h8bry42zajl4801ycz_0yynb/view?usp=drivesdk


共3个答案

匿名用户

若要防止container上的showcase重叠,请将position:relative;添加到.container中。

如果您希望conatiner不与.relation重叠,那么只需在.relation中添加height:100VH;即可。

null

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  min-height: 100vh;
}

a {
  color: #000;
  text-decoration: none;
}

.container {
  max-width: 1200px;
  width: 80%;
  position: relative;
  background: red;
  margin: auto;
}

.d-4 {
  font-size: 2.6rem;
  text-align: center;
  font-weight: 600;
}

.lead {
  font-size: 1.8rem;
  font-weight: 300;
}

.relative {
  position: relative;
}

nav {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: flex;
  font-size: 17px;
  font-weight: bold;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 10px 0;
}

nav>a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 28px;
  padding: 0 20px;
}

nav ul a {
  padding: 15px;
  margin: 0 5px;
  color: #fff;
  border-radius: 4px;
}

nav ul a:hover {
  background: rgba(0, 0, 0, 0.6);
}

.showcase {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url('https://cdn.pixabay.com/photo/2017/06/24/23/03/railway-2439189_1280.jpg') no-repeat center center/cover, rgba(0, 0, 0, 0.5);
  background-blend-mode: darken;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
<div>
  <div class="relative">
    <nav>
      <a href="#"><img height="70" src="img/logo.png" alt="Logo"> &nbsp;Title</a>
      <ul>
        <a href="#">Home</a>
        <a href="#">Login</a>
        <a href="#">SignUp</a>
        <a href="#">Dashboard</a>
      </ul>
    </nav>
    <div class="showcase">
      <h1 class="d-4">Welcome to my Website.</h1>
      <p class="lead">
        Way of heaven is here.
      </p>
    </div>
  </div>

  <div class="container">
    <h1 class="text-center">Contact Us</h1>
    <form id="footer" class="control">
      <input class="input" type="text" id="name" placeholder="Enter your Name">
      <input class="input" type="email" id="email" placeholder="Enter your E-mail">
      <input class="input" type="number" id="mob" placeholder="Enter your phone No.">
      <input class="input" type="textr" id="subject" placeholder="Enter your subject">
      <textarea class="textarea" placeholder="Enter your message"></textarea>
    </form>
  </div>
</div>

匿名用户

您需要将position:absolute添加到您的。container中。 CSS中的position属性是这样工作的:

属性-值对position:relative告诉您的布局,哪个元素应该用作包含属性-值对position:absolute的子元素的位置的引用。

然后,您可以使用属性toprightbottomleft来指定具有position:absolute对的子HTML元素与其具有position:relative对的第一个父元素(在HTML文档中从子元素向上走)边缘的距离。

在CSS代码中,只需将父元素设置为position:relative,这不会改变布局中的任何内容; 它只是告诉您的页面,元素X的任何具有position:relative(具有position:absolute)的子元素必须使用该X进行相对定位,使用四个属性toprightbottomleft。 是的,显然,一旦您将具有position:relative的父级的HTML子级设置为position:absolute,它就会被放置在父级之上。

匿名用户

需要这样的结果吗?

null

* {
      padding: 0;
      margin: 0;
      box-sizing: border-box;
    }

    body {
      min-height: 100vh;
    }

    a {
      color: #000;
      text-decoration: none;
    }

    .container {
      max-width: 1200px;
      width: 80%;
      margin: auto;
    }

    .d-4 {
      font-size: 2.6rem;
      text-align: center;
      font-weight: 600;
    }

    .lead {
      font-size: 1.8rem;
      font-weight: 300;
    }

    .relative {
      display: flex; /* added */
      height: 100vh; /* added */
      flex-direction: column; /* added */
      position: relative;
      top: 0;
      left: 0;
    }

    nav {
      position: absolute;
      top: 0;
      left: 0;
      z-index: 1;
      display: flex;
      font-size: 17px;
      font-weight: bold;
      justify-content: space-between;
      align-items: center;
      width: 100%;
      padding: 10px 0;

    }

    nav > a {
      display: flex;
      justify-content: center;
      align-items: center;
      color: #fff;
      font-size: 28px;
      padding: 0 20px;

    }

    nav ul a {
      padding: 15px;
      margin: 0 5px;
      color: #fff;
      border-radius: 4px;
    }

    nav ul a:hover {
      background: rgba(0,0,0,0.6);
    }

    .showcase {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100vh;
      background: url('https://cdn.pixabay.com/photo/2017/06/24/23/03/railway-2439189_1280.jpg') no-repeat center center/cover,rgba(0,0,0,0.5);
      background-blend-mode: darken;
      color: #fff;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Website | Getting Started</title>
  <!-- My CSS -->
  <link rel="stylesheet" href="css/style.css">
</head>
<body>


  <div class="relative">
    <nav>
      <a href="#"><img height="70" src="img/logo.png" alt="Logo"> &nbsp;Title</a>
      <ul>
        <a href="#">Home</a>
        <a href="#">Login</a>
        <a href="#">SignUp</a>
        <a href="#">Dashboard</a>
      </ul>
    </nav>
    <div class="showcase">
      <h1 class="d-4">Welcome to my Website.</h1>
      <p class="lead">
        Way of heaven is here.
      </p>
    </div>
  </div>

  <div class="container">
    <h1 class="text-center">Contact Us</h1>
    <form id="footer" class="control">
      <input class="input" type="text" id="name" placeholder="Enter your Name">
      <input class="input" type="email" id="email" placeholder="Enter your E-mail">
      <input class="input" type="number" id="mob" placeholder="Enter your phone No.">
      <input class="input" type="textr" id="subject" placeholder="Enter your subject">
      <textarea class="textarea" placeholder="Enter your message"></textarea>
    </form>
  </div>


</body>
</html>