如何将导航div带到前面

时间:2015-12-20 17:08:29

标签: html css

我有一个导航栏,当用户滚动时会粘在页面顶部,但是当用户继续向下滚动页面时,导航菜单似乎会消失在某些页面元素后面。 任何有关此事的帮助将不胜感激,下面是所有代码。



* {
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: 'Segoe UI';
}
p,
h5 {
  margin-bottom: 10px;
  line-height: 1.5;
}
h5 {
  text-align: center;
  border: 1px solid #ccc;
  border-width: 1px 0;
}
h5.fixed {
  position: fixed;
  top: 80px;
  left: 0;
  background-color: #fff;
  right: 0;
}
.nav a {
  text-decoration: none;
  color: #fff;
  display: block;
  transition: .3s background-color;
}
.nav a:hover {
  background-color: #005f5f;
}
.nav a.active {
  background-color: #fff;
  color: #444;
  cursor: default;
}
/* Option 1 - Display Inline */

.nav li {
  display: inline-block;
  margin-right: -4px;
}

	<h5>
				<div class="nav">
      <ul>
        <li class="home"><a href="#">Home</a></li>
        <li class="tutorials"><a class="active" href="#">Tutorials</a></li>
        <li class="about"><a href="#">About</a></li>
        <li class="news"><a href="#">Newsletter</a></li>
        <li class="contact"><a href="#">Contact</a></li>
      </ul>
    </div>
		</h5>
&#13;
&#13;
&#13;

enter image description here

enter image description here

enter image description here

0 个答案:

没有答案