我有一个 BG 图像附加到与班级的链接selectedlink
图像显示,但当我将其向下放置时,它会在链接的视觉参数之外消失。就像href
是图像的窗口。
这是代码:
CSS:
div#intnavIcons a.selectedlink {
color: #900404;
font-size:11px;
font-weight:bold;
padding:#FFF;
text-decoration:underline;
background: url("/images/nav/bg-nav-current.png") no-repeat scroll center bottom transparent;
}
HTML:
<div id="intnavIcons">
<a class="selectedlink">This is selected</a>
<a>This is not selected</a>
<a>This is not selected</a>
<a>This is not selected</a>
</div>
谁能看到我的风格是否遗漏了将图像保持在href之上的东西?
为了将它向下移动,我只是添加background-position: 0px 10px;