日期:2014-05-19  浏览次数:20388 次

请问如何让一个链接当鼠标移动到上面的时候变颜色呢
如题   谢谢

------解决方案--------------------
写一个样式
<style>
A:link
{
color: #000000;
text-decoration: none;
}
A:visited
{
color: #000000;
text-decoration: none;
}
A:hover
{
color: #D7630E;
text-decoration: underline;
}
A:active
{
color: #993300;
text-decoration: none;
}
</style>

QQ:380326576