
css 锚的伪类
a:link {color: #FF0000; text-decoration: none} /* 未访问的链接 */
a:visited {color: #00FF00; text-decoration: none} /* 已访问的链接 */
a:hover {color: #FF00FF; text-decoration: underline} /* 鼠标在链接上 */
a:active {color: #0000FF; text-decoration: underline} /* 激活链接 */
css 例:
#navi_bar a:link {
/*导航条文字颜色*/
}
#navi_bar a:visited {
}
#header #site_title a:link {
/*地址栏文字颜色*/
}
#header #site_title a:visited {
}
#header #site_title {
line-height: 31px;
height: 31px;
padding-right: 10px;
background-color: #F3F3F3;
}.




