局部a链接样式

原文发布时间为:2010-01-16 —— 来源于本人的百度文章 [由搬家工具导入]

<style type="text/css">
<!--默认页面链接->
a:link { color: #CC3399; text-decoration: none}
a:visited { color: #FF3399; text-decoration: none}
a:hover { color: #800080; text-decoration: none}
a:active { color: #800080; text-decoration: none}

<!--自定义链接样式2-->
a.two:link { color: #CC99CC; text-decoration: none}
a.two:visited { color: #FF0000; text-decoration: none}
a.two:hover { color: #606060; text-decoration: none}
a.two:active { color: #606060; text-decoration: none}

<!--自定义链接样式3-->
a.three:link { color: #00FFFF; text-decoration: none}
a.three:visited { color: #00FFFF; text-decoration: none}
a.three:hover { color: #FF3399; text-decoration: none}
a.three:active { color: #FF3399; text-decoration: none}

<!--自定义链接样式4-->
div.div a:link { color: #004000; text-decoration: none}
div.div a:visited { color: #00FFFF; text-decoration: none}
div.div a:hover { color: #008000; text-decoration: none}
div.div a:active { color: #008000; text-decoration: none}
-->
</style>

原文地址:https://www.cnblogs.com/handboy/p/7158369.html