目录

如何操作 - 底部导航


了解如何使用 CSS 创建底部导航菜单。


底部导航菜单

亲自试一试 »


创建底部导航菜单

步骤1)添加HTML:

示例

<div class="navbar">
  <a href="#home" class="active">Home</a>
  <a href="#news">News</a>
  <a href="#contact">Contact</a>
</div>

步骤2)添加CSS:

示例

/* Place the navbar at the bottom of the page, and make it stick */
.navbar {
  background-color: #333;
  overflow: hidden;
  position: fixed;
  bottom: 0;
  width: 100%;
}

/* Style the links inside the navigation bar */
.navbar a {
  float: left;
  display: block;
  color: #f2f2f2;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
}

/* Change the color of links on hover */
.navbar a:hover {
  background-color: #ddd;
  color: black;
}

/* Add a color to the active/current link */
.navbar a.active {
  background-color: #04AA6D;
  color: white;
}
亲自试一试 »

提示:要创建适合移动设备、响应式的底部导航栏,请阅读我们的如何操作 - 响应式底部导航教程。

提示:去我们的CSS 导航栏教程了解有关导航栏的更多信息。