纯 HTML 和 CSS 汉堡菜单不起作用

Pure HTML and CSS hamburger menu does not work

我现在正在用 html 和 css(没有 js)制作汉堡菜单,并且 :checked + .something 不起作用。我正在寻找大约 3 个小时的解决方案,但我找不到任何解决方案。如果你愿意帮助我,那就太好了。 也许我在某个地方搞砸了,因为我是从视频中看到的,但我做了和他完全一样的事情,但我没有工作:( 这是代码:

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: teal;
}

.navigations {
  right: 0;
  z-index: 10;
  display: block;
  position: fixed;
  top: 15px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 150px;
  border-radius: 50px 10px 10px 50px;
  background: rgba(0, 0, 0, 0.5);
}

.navigations div {
  display: inline-block;
  font-size: 25px;
}

.navigations a {
  text-decoration: none;
  color: white;
}

.burger {
  z-index: 100;
  position: fixed;
  right: 25px;
  display: block;
  top: 25px;
  cursor: pointer;
}

.burger div {
  width: 45px;
  height: 5px;
  background-color: white;
  margin: 12px;
  border-radius: 10px;
}

#toggle {
  display: none;
  position: fixed;
}

#toggle:checked+.navigations {
  display: none;
}
<html>

<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale = 1.0">
  <link rel="stylesheet" type="text/css" href="something.css">
</head>

<body>
  <div class="navigations">
    <div class="nav">
      <a href="">About us</a>
    </div>
    <div class="nav">
      <a href="">Tours</a>
    </div>
    <div class="nav">
      <a href="">Contacts</a>
    </div>
  </div>
  <label for="toggle">
      <div class="burger">
          <div class="burgerelem"></div>
          <div class="burgerelem"></div>
          <div class="burgerelem"></div>
      </div>
  </label>
</body>

</html>

看来您实际上缺少复选框元素。由于您使用的是 adjacent sibling selector,(#toggle:checked + .navigations 中的 +),您应该将带有 .navigations div 的复选框紧接在 #toggle 输入。

* {
  margin: 0;
  padding: 0;
}

body {
  background-color: teal;
}

.navigations {
  right: 0;
  z-index: 10;
  display: block;
  position: fixed;
  top: 15px;
  padding-bottom: 20px;
  padding-left: 25px;
  padding-right: 150px;
  border-radius: 50px 10px 10px 50px;
  background: rgba(0, 0, 0, 0.5);
}

.navigations div {
  display: inline-block;
  font-size: 25px;
}

.navigations a {
  text-decoration: none;
  color: white;
}

.burger {
  z-index: 100;
  position: fixed;
  right: 25px;
  display: block;
  top: 25px;
  cursor: pointer;
}

.burger div {
  width: 45px;
  height: 5px;
  background-color: white;
  margin: 12px;
  border-radius: 10px;
}

#toggle {
  display: none;
  position: fixed;
}

/*
    Since the .navigations is the next sibling element after #toggle,
    the + selector works here
*/

#toggle:checked+.navigations {
  display: none;
}
<input type="checkbox" id="toggle" /> <!-- Add this! -->
<div class="navigations">
  <div class="nav">
    <a href="">About us</a>
  </div>
  <div class="nav">
    <a href="">Tours</a>
  </div>
  <div class="nav">
    <a href="">Contacts</a>
  </div>
</div>
<label for="toggle">
  <div class="burger">
    <div class="burgerelem"></div>
    <div class="burgerelem"></div>
    <div class="burgerelem"></div>
  </div>
</label>