html – 当前页面的导航栏高亮显示

前端之家收集整理的这篇文章主要介绍了html – 当前页面的导航栏高亮显示前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

我想知道如何添加当前页面上的导航栏上添加高亮框的功能.你知道所以人们知道他们的页面.

非常喜欢此网站,活动页面上有白色框:https://woodycraft.net/home/

这是导航栏的CSS:

/*TOP NAV BAR SECTION*/

*{margin: 0px;
  padding: 0px;}

#nav_bar {background-color: #a22b2f;
          Box-shadow: 0px 2px 10px;
          height: 45px;
          text-align: center;}

#nav_bar > ul > li {display: inline-block;}

#nav_bar ul > li > a {color: white;
                      display: block;
                      text-decoration: none;
                      font-weight: bold;
                      padding-left: 10px;
                      padding-right: 10px;
                      line-height: 45px;}

#nav_bar ul li ul {display: none;
                   list-style: none;
                   position: absolute;
                   background: #e2e2e2;
                   Box-shadow: 0px 2px 10px;
                   text-align: left;}

#nav_bar ul li a:hover {background: #8e262a;}


#nav_bar a:active {background: white;}

#nav_bar ul li:hover ul {display: block;}

#nav_bar ul li ul li a {color: #252525;
                        display: block;}

#nav_bar ul li ul li a:hover {background: #4485f5;
                              color: #fff;}

这是我的一个页面的HTML:

 原文链接:https://www.f2er.com/css/427634.html

猜你在找的CSS相关文章