1、移动到链接上的时候,不要有下滑线。
2、移动到链接上的时候,链接文字变成灰色。
3、打开过以后的链接文字不变色。
这样就可以:
a:link {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:visited {
font-size: 12px;
color: #000000;
text-decoration: none;
}
a:hover {
font-size: 12px;
color: #999999;
text-decoration: underline;
}
0

评论加载中…