希望有人可以帮助我解决我在新设计中实现的 nivo 滑块上的背景定位的 css。
背景位置被忽略了.nivo-nextNav
,我不知道为什么。
这是我的CSS:
/* Direction nav styles (e.g. Next & Prev) */
.nivo-directionNav a {
display:block;
width:43px;
height:45px;
background:url(../images/arrows.png) no-repeat;
text-indent:-9999px;
border:0;
}
.nivo-prevNav {
left:0px;
}
.nivo-nextNav {
background-position: -43px 0;
right: 22px;
}
页面链接:http ://www.plumeriawebdesign.com/Headstand%20Software/
我现在可以工作了。我将css更改为.nivo-directionNav a
以下内容:
.nivo-directionNav a {
position:absolute;
top:40%;
z-index:9;
cursor:pointer;
width: 43px;
height: 45px;
text-indent:-9999px;
background-image:url(../images/arrows.png);
background-repeat: no-repeat;
}
现在背景已正确定位。很好奇为什么它可以在他们网站上的默认滑块上运行,而不是我的。对我来说很奇怪。