gtxyzz

css,垂直导航栏实例,活动/当前导航链接

gtxyzz web技术 2022-07-08 671浏览 0

垂直导航栏实例,活动/当前导航链接

创建背景色为灰色的基础垂直导航栏,并在用户将鼠标移到链接上时改变链接的背景色:

实例

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #f1f1f1;
}
li a {
  display: block;
  color: #000;
  padding: 8px 16px;
  text-decoration: none;
}
/* 鼠标悬停时改变链接颜色 */
li a:hover {
  background-color: #555;
  color: white;
}

垂直导航栏

活动/当前导航链接 向当前链接添加 "active" 类,以使用户知道他/她在哪个页面上:

垂直导航栏

在此例中,我们创建一个具有绿色背景色和白色文本的 "active" 类。该类将添加到 "Home" 链接。

继续浏览有关 css 的文章
发表评论