0

我使用背景图像和悬停效果创建了一个导航栏。我正在尝试学习如何在网站上正确实施它们。

我已经设计了 90% 的导航,但我遇到的问题是,当我将鼠标悬停在其中一个项目上时,悬停图像不会与原始图像重叠并产生额外的空间。

CSS:

#bg {
    background-color: #EAEAEA;
    width: 761px;
}
#menu {
    background-color: #EAEAEA;
    height: 58px;
    list-style-type: none;
    padding-left: 1px;
}
#menu li.first a {
    background: url("../images/top_nav_f.png") no-repeat scroll 0 0 transparent;
    height: 180px;
}
#menu li a {
    background: url("../images/top_nav_f.png") no-repeat scroll 0 0 transparent;
    float: left;
    width: 190px;
    height: 180px;
}
#menu li.first a:hover {
    background: url("../images/menu_hover_f.png") no-repeat scroll 0 0 transparent;
} 
#menu li a:hover {
    background: url("../images/menu_hover.png") no-repeat scroll right top transparent;
    color: #FFFFFF;
    height: 58px;
}
#menu li.last a {
    background: url("../images/top_nav_n.png") no-repeat scroll 0 0 transparent;
}
#menu li.last a:hover {
    background: url("../images/menu_hover_r.png") no-repeat scroll 0 0 transparent;
}
.bar {
    margin-right: 38px;
    padding-top: 5px;
    text-align: center;
}
.n1, .n2 {
    color: #333333;
}

HTML:

  <nav id="bg">
            <ul id="menu">
           <li class="first">
            <a href="">
            <div class="bar">
              <div class="n2">Link 1 </div>
            </div>
           </a>

           </li>

            <li><a class="" href="">
            <div class="bar">
              <div class="n2">link 2 </div>
            </div>
             </a>
             </li>

            <li><a class="" href="">
            <div class="bar">
              <div class="n2">link 3 </div>
            </div>
            </a>
            </li>


             <li class="last"><a href="">
            <div class="bar">
              <div class="n2">link 4 </div>
            </div>
            </a>
            </li>
</ul>

</nav>

演示:http ://tinyurl.com/cqus3fb

我一直试图让它工作近 3 天!

4

1 回答 1

0

问题在于以下#menu li a:hover规则:

#menu li a:hover {
    background: url("../images/menu_hover.png") no-repeat scroll right top transparent;
    color: #FFFFFF;
    height: 58px;
}

您需要将后台规则更改为:

    background: url("../images/menu_hover.png") no-repeat scroll 0 0 transparent;

原因是在您的背景简写声明中,您已将背景位置设置为right以及top所有其他规则设置为0和的位置0。所以基本上你的背景是从右边而不是左边定位的,因为它a是 190px 宽,而图像是 180px 宽,它看起来像是有 10px 的间隙。

于 2012-11-30T19:12:56.953 回答