【发布时间】:2012-12-23 07:45:27
【问题描述】:
我有一个 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;
【问题讨论】:
标签: html css positioning background-image