我有翻转顶级菜单。我试图得到它所以我的背景图像(17像素x 13像素)出现在中心悬停。我已经尝试了所有后台css属性,似乎没有任何工作。我是以错误的方式解决这个问题吗?
这是我的CSS:
#navlist a:hover
{
color: #fff;
background-color: #b2b85c;
text-decoration: none;
background-image: url(Images/pointer.jpg);
background-position: center bottom;
background-attachment: fixed;
}
这是该页面的链接。
答案 0 :(得分:2)
通过导航,我认为你的意思是顶级菜单。
尝试将background-repeat: no-repeat;
添加到#navlist a:hover