<html>
<head>
<title>控制A标签中的链接文字</title>
<style
type="text/css">
.color{color:#3399CC
text-decoration:nonefont-weight:bold}/*链接设置*/
.color:visited{color:#3399CC
text-decoration:nonefont-weight:bold}/*访问过的链接设置*/
.color:hover{color:#CF0000
text-decoration:underlinefont-weight:bold}/*鼠标放上的链接设置*/
/*
取消下划线只要把text-decoration:underline修改成text-decoration:none
文字加粗font-weight:bold
如不需要加粗显示,那么删除font-weight:bold就可以了
其它更多的参数设置参考:css2.0手册
其中的"伪类"说明
*/
</style>
</head>
<body>
<a
href="#"
class="color">控制A标签内的文字颜色,并且带下划线</a><!--
class="color"
是调用定义的.color
样式-->
</body>
</html>