...的鼠标放到图片上图片上的文字可以改变颜色用CSS如何做,我的代码想...
发布网友
发布时间:2024-10-01 03:06
我来回答
共4个回答
热心网友
时间:2024-10-01 12:11
图片上的文字要变颜色?如果图片是背景,文字是插入在上面的话,用:hover{font-color:#xxxxxx;}就可以。如果文字就是在图片上的话,那就另外做一张图片,把文字换个颜色。然后:hover,改变图片的路径,把这张图片换上去。
热心网友
时间:2024-10-01 12:15
看看就好!
热心网友
时间:2024-10-01 12:08
.BgBtn{background:url(images/Bg.png) no-repeat; width:200px;height:150px; color:red}
.BgBtn:hover{background:url(images/Bg.png) no-repeat; width:200px;height:150px;color:green}
<div class="BgBtn">文字</div>
热心网友
时间:2024-10-01 12:13
ight="51" border="0" cellpadding="1" cellspacing="0">
<tr>
<td onMouseOver="this.style.background='#ff6600'" onMouseOut="this.style.background='#CCCCCC';" bgcolor="#CCCCCC"> </td>
</tr>
</table>
====================
关键就是
onMouseOver="this.style.background='#ff6600'" onMouseOut="this.style.background='#CCCCCC';"