ie6滑门问题翻转

时间:2011-03-10 12:49:32

标签: css internet-explorer-6 rollover sliding-doors

我有一个<a>标签,它使用css推拉门技术来显示翻滚状态

a.task_link {
width:220px;
height:241px;
float:left;
position:relative;
margin-right:20px;
display:block;
text-decoration:none;



}


a#task  {
    background:url(/images/task.jpg) no-repeat;

    }

a#_task:hover {
    background: url(/images/task.jpg) -220px 0px no-repeat;

    }

问题是ie6我得到了背景图像的闪烁/闪烁,对此有什么解决方法吗?

谢谢,

学家

1 个答案:

答案 0 :(得分:1)

添加position:relativezoom:1overflow:hidden或其他会触发布局而不会破坏可用性的内容。