我正在尝试练习图像替换技术,主要用于导航目的。我似乎无法弄清楚为什么它不起作用。悬停有效,但默认菜单项无效。我很确定事情写得正确。
http://lrroberts0122.github.com/DWS/practical/index.html
这是导航的 HTML:
<ul id="nav">
<li id="process"><a href="index.html" id="active">Our Process</a></li>
<li id="function"><a href="function.html">Bio-Built Function</a></li>
<li id="future"><a href="future.html">The Future</a></li>
<li id="engage"><a href="engage.html">Engage Dio</a></li>
</ul>
这是我的导航 CSS:
#nav {
list-style: none;
width: 244px;
height: 124px;
overflow: hidden;
}
#nav li {
float: left;
}
#nav li a {
width: 244px;
height: 30px;
text-indent: 100%;
white-space: nowrap;
overflow: hidden;
display: block;
background: url('../img/bg_nav.png');
}
#process {
background-position: 0 0;
}
#process:hover {
background-position: -244px 0;
}
#function {
background-position: 0 -31px;
}
#function:hover {
background-position: -244px -31px;
}
#future {
background-position: 0 -60px;
}
#future:hover {
background-position: -244px -62px;
}
#engage {
background-position: 0 -90px;
}
#engage:hover {
background-position: -244px -93px;
}