发布网友 发布时间:2022-05-09 21:33
共2个回答
热心网友 时间:2022-04-22 08:03
边框尽量用在a上,避免用在img上。 :hover伪类尽量用在a上,因为IE6不支持其他元素的hover伪类。hover意思就是鼠标移上去的动作。热心网友 时间:2022-04-22 09:21
设置“鼠标经过图像”效果,活用a标签就可以了。
<style type="text/css">
a.home {background:url(鼠标滑过之前的图片地址) no-repeat; width:100px; height:20px;
display:inline-block;_float:left;}
a.home:hover {background:url(鼠标滑过的图片地址) no-repeat;
</style>
<div>
<a href="http://www.baidu.com" class="home">首页</a>
</div>
这样就可以实现有链接的可以换图的效果