通过设置selector{background:url(#)}可以解决一些IE6&7 bug:

1.鼠标滚轮失效bugdemo

当时用的是添加背景色的方法:

#works{background:#fff}

也可通过下面方法解决:

#works{background:url(#)}

2.a 标签为了 png-24 图片透明而使用透明滤镜后导致 a 链接不可点击,demo

a{background:none}

解决方法(demo):

a{background:url(#);/*或指向透明的gif*/}

详见 No Transparency Click Bug

3.a 局部点击bug,demo

解决方法(demo):

a{background:url(#)}

或:

a{background: #fff}

详见:Partial Click Bug v2

4.自定义cursor的元素覆盖在img元素上时失效

<!DOCTYPE html>
<html>

<head>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<title>IE 6/7/8 cursor bug</title>
<style>
.photo-viewer{width:276px;}
.photo-viewer .inner{position:relative;#zoom:1;_overflow:hidden;}
.cursor-l{position:absolute;top:0;left:0;width:33%;height:100%;overflow:hidden;line-height:99;cursor:url('http://imgcache.qq.com/campus/images/pre.cur'),auto;}
</style>
</head>

<body>

<div class="photo-viewer">
	<div class="inner">
		<img alt="Google" src="http://www.google.com.hk/intl/zh-CN/images/logo_cn.gif">
		<a class="cursor-l" href="#" title="上一页">上一页</a>
	</div>
</div>

</body>

</html>

解决方法:cursor-l上加background:url(#)

延伸阅读: