css 学习

链接样式
a:hover 当鼠标移动到超连接时
a:link 超连接(一般使用a就好了)
a:active 是鼠标点击是的超连接
a:visited 是已经点过的超连接

#foot a:hover
{
 color:#00ff00;
}

#foot a:link
{
 color:#0000ff;
}

#foot a:active
{
 color:#cccccc;
}

#foot a:visited
{
 color:#cc0000;
}

posted on 2007-09-10 01:08  无意  阅读(87)  评论(0)    收藏  举报

导航