当前位置: 代码迷 >> ASP.NET >> 请教怎么让一个链接当鼠标移动到上面的时候变颜色呢
  详细解决方案

请教怎么让一个链接当鼠标移动到上面的时候变颜色呢

热度:2508   发布时间:2013-02-26 00:00:00.0
请问如何让一个链接当鼠标移动到上面的时候变颜色呢
如题   谢谢

------解决方案--------------------------------------------------------
写一个样式
<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
  相关解决方案