【发布时间】:2010-10-28 03:48:41
【问题描述】:
我正在使用 AlphaImageLoader 在 IE6 中显示我的透明 PNG。 HTML 是,
<div id="infoBox">
<a href="links.html">Links</a>
</div>
CSS 是,
#infoBox
{
background:url('/images/bg.png') !important; 背景:; filter:progid:DXImageTransform.Microsoft.AlphaImageLoader (src='/images/bg.png',sizingMethod='scale'); 位置:绝对;
}
#infoBox a:link
{
text-decoration:none;
position:relative;
}
它工作正常,但链接在 IE6 中不再可点击。我在互联网上读到的是,我必须使用 AlphaImageLoader 制作元素,而不是使用任何位置,但我要求使用绝对位置。我该怎么做?
【问题讨论】: