用CSS创建 让鼠标经过文字时变色加粗
我用CSS做了一个 但是文字不会变色 加粗是成功了
有没有谁可以帮我把它经过时文字颜色改成#ff0033的颜色
是一个在表格里的文字 会做的加我QQ19565195
我发代码给你帮我改
谢谢!!
有用立刻给分
用CSS创建 让鼠标经过文字时变色加粗
我用CSS做了一个 但是文字不会变色 加粗是成功了
有没有谁可以帮我把它经过时文字颜色改成#ff0033的颜色
是一个在表格里的文字 会做的加我QQ19565195
我发代码给你帮我改
谢谢!!
有用立刻给分
你可以按照以下代码来编写
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>特效:www.holycity.com.cn</title>
<style type="text/css">
<!--
a:link {
color: #000;
text-decoration: none;
}
a:visited {
text-decoration: none;
color: #F60;
}
a:hover {
text-decoration: none;
color: #ff0033;
}
a:active {
text-decoration: none;
color: #ff0033;
}
-->
</style></head>
<body>
<a href=" http://holycity.taobao.com"><b>Dreamweaver鼠标经过文字变色的问题</b></a> 特效:<a href=" http://holycity.com.cn"> http://holycity.taobao.com/</a>
</body>
</html>
你可以看看下面这段代码,其实就是加两个脚本写的事件
onmouseover = function(){this.style.backgroundColor='#d5f4fe'},onmouseout = function(){this.style.backgroundColor='#FFFFFF'}
将下面代码房贷你dreamvare里面运行看看就知道结果了
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns=" http://www.w3.org/1999/xhtml"> <head> <title>鼠标放置后变色</title> <style> .ordered{ background:#CECECE; text-align:center; } .ordered tr{ background-color:#fff; event:expression(onmouseover = function(){this.style.backgroundColor='#d5f4fe'},onmouseout = function(){this.style.backgroundColor='#FFFFFF'}); } .ordered tr:hover{ background:#d5f4fe; } </style> </head> <body> <table border="1" width="100%" class="ordered"> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> <tr><td>11</td><td>11</td><td>11</td></tr> </table> </body> </html>