如何删除滚动条并让其他元素出现在我的<div>之上?

时间:2015-09-24 19:11:16

标签: html css drop-down-menu scrollbar

在加快完成我的下拉菜单,然后让我的主要文件拿到我的所有文本后,容纳主文本的容器现在出现在所有内容之上。我希望我的下拉菜单项显示在其他所有内容之上。作为一个帮助,我在我的容器内为主区域溢出:auto并使容器有溢出:隐藏。它摆脱了底部的滚动条,但有没有办法隐藏垂直滚动条?这是与我的特定问题有关的HTML和CSS。

html {
  height: 100%;
  min-height: 100%;
}
body {
  margin: 0px;
}
#header {
  position: fixed;
  width: 100%;
  margin: 0px;
  background: rgba(67, 69, 76, 0.87);
  padding: 30px;
  text-shadow: 5px 5px 5px #000000;
  text-align: center;
  color: white;
}
#header h1 {
  position: center;
  padding: 0px;
  margin: 0px;
}
#menu-bar {
  position: fixed;
  top: 97px;
  width: 100%;
}
#menu-bar ul {
  width: 100%;
  background: rgba(30, 51, 74, 0.74);
  list-style: none;
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}
#menu-bar ul a {
  display: block;
  color: white;
  text-decoration: none;
  font-weight: 700;
  font-size: 12px;
  line-height: 40px;
  padding: 0 15px;
  font-family: "HelveticaNeue", "Helvetica Neue", Helvetica, Arial, sans-serif;
}
#menu-bar ul li {
  position: relative;
  float: left;
  margin: 0;
  padding: 0;
}
#menu-bar ul li:hover {
  background: rgb(90, 42, 0);
}
#menu-bar ul ul {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: rgb(32, 42, 60);
}
#menu-bar ul ul li {
  float: none;
}
#menu-bar ul ul a {
  line-height: 120%;
  padding: 10px;
}
#menu-bar ul ul ul {
  top: 0;
  left: 100%
}
#menu-bar ul li:hover > ul {
  display: block;
  background: rgb(32, 42, 60);
}
#section {
  background-color: grey;
  color: black;
  width: 50%;
  height: 66%;
  float: right;
  padding: 50px;
  overflow: hidden;
  position: fixed;
  top: 160px;
  right: 30%;
}
#scroll {
  overflow: auto;
  height: 100%;
}
#footer {
  position: fixed;
  z-index: 100;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgb(25, 25, 62);
  background: rgba(25, 25, 62, 0.6);
  color: white;
  text-align: center;
  padding: 5px;
}
strong {
  color: #FF3399;
}
<!DOCTYPE html>
<html lang="en-US">

<head>
  <meta charset="UTF-8">
  <title>
    Site Title
  </title>
  <link rel="stylesheet" type="text/css" href="style1.css">
</head>

<body>
  <div id="header">
    <h1>
      Site Header
    </h1>
  </div>
  <!--Drop-Down Nav-bar-->
  <div id="menu-bar">
    <ul>
      <li>
        <a href="#">
          Home
        </a>
      </li>
      <li>
        <a href="#">
          1
        </a>
        <ul>
          <li>
            <a href="#">
              1-1
            </a>
          </li>
          <li>
            <a href="#">
              1-2
            </a>
          </li>
        </ul>
      </li>
      <li>
        <a href="#">
          2
        </a>
        <ul>
          <li>
            <a href="#">
              2-1
            </a>
          </li>
        </ul>
      </li>
      <li>
        <a href="#">
          3
        </a>
        <ul>
          <li>
            <a href="#" target="_blank">
              3-1
            </a>
          </li>
          <li>
            <a href="#" target="_blank">
              3-2
            </a>
          </li>
          <li>
            <a href="#" target="_blank">
              3-3
            </a>
            <ul>
              <li>
                <a href="#" target="_blank">
                  3-3-1
                </a>
              </li>
              <li>
                <a href="#" target="_blank">
                  3-3-2
                </a>
              </li>
              <li>
                <a href="#" target="_blank">
                  3-3-3
                </a>
              </li>
              <li>
                <a href="#" target="_blank">
                  3-3-4
                </a>
              </li>
            </ul>
          </li>
        </ul>
      </li>
      <li>
        <a href="#">
          4
        </a>
        <ul>
          <li>
            <a href="#" target="_blank">
              4-1
            </a>
          </li>
          <li>
            <a href="#" target="_blank">
              4-2
            </a>
          </li>
          <li>
            <a href="#" target="_blank">
              4-3
            </a>
          </li>
        </ul>
      </li>
    </ul>
  </div>
  <!--Main text area-->
  <div id="section">
    <div id="scroll">
      <h2>
        <u>
          Header
        </u>
      </h2>
      <p>
        Writing goes here
      </p>
    </div>
  </div>
</body>

</html>

2 个答案:

答案 0 :(得分:0)

#menu-bar设置为z-index: 1,使其显示在您的内容上方。

答案 1 :(得分:0)

这里有两件事需要做,以达到预期的效果。

首先,将下拉菜单放在内容上方,只需使用Z-index即可。下拉列表中的z-index需要大于以下内容:

#menu-bar {
  z-index: 1;
  position: fixed;
  top: 97px;
  width: 100%;
}

其次,如果要删除垂直滚动条,则需要隐藏y轴上的溢出:

#scroll {
  overflow-y: hidden;
  height: 100%;
  margin-bottom: 15px;
}

在这里查看工作代码:http://jsfiddle.net/1wj6krzc/