ie6推拉门侧翻问题
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 我得到背景图像的闪烁/闪烁,有什么解决方案吗?
谢谢,
J。
I have an <a>
tag which uses the css sliding doors technique to show the rollover state
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;
}
The problem is with ie6 I get a flashing/blinking of the background image, any solution to this?
Thanks,
J.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
添加
position:relative
或zoom:1
或overflow:hidden
或将触发布局而不破坏可用性的内容。Add
position:relative
orzoom:1
oroverflow:hidden
or something that will trigger layout without breaking usability.