
可以看看我的是不是不一样了
让你导航条更完美伪类动态链接css样式在和讯博客的运用把这两行代码;
#navi_bar a:link {
/*导航条文字颜色*/
}
#navi_bar a:visited {
}
换成:( : #FF0000颜色代码可以调整):
#navi_bar a:link {color: #FF0000; text-decoration: none} /* 未访问的链接 */
#navi_bar a:visited {color: #00FF00; text-decoration: none} /* 已访问的链接 */
#navi_bar a:hover {color: #FF00FF; text-decoration: underline} /* 鼠标在链接上 */
#navi_bar a:active {color: #0000FF; text-decoration: underline} /* 激活链接 */



