<style>
.ab{width:990px;height:400px;margin:0 auto;background:url(xx.jpg) 50% 0 no-repeat;position:relative;}
.cc{width:100px;height:100px;display:block;position:absolute;left:500px;top:300px;}
</style>
<div class="ab">
<a href="#" class="cc"><img src="..." width="100" height="100"></a>
</div>
你只需要在外部div定义相对定位,里面的连接定义绝对定位就可以了。然后left 和top分别为左边、顶部的 距离。当然如果你要是不随页面滚动变化的话 就设置里面的div position:fixed就可以了