可以用jQuery实现:
$(function(){
$(".box").mouseover(function(){
$(".img").css({"margin-top":"3px"});
})
$(".boxs").mouseout(function(){
$(".img").css({"margin-top":"0px"});
})
})
给超链接属性 a:hover 定义的时候margin-top 几个象数就好了
你给目标层增加一个a:hover样式,在样式里添加margin-top:5px;就可以了