比如:<a
style="font:
bold
12px
'新宋体'
color:#fff
line-height:20px">点击改变内容</a>
或者<a>点击改变内容</a>
样式为:
.a{font:
bold
12px
'新宋体'
color:#fff
line-height:20px}
.a:hover{font:
bold
12px
'新宋体'
color:#000
line-height:20px}
不知道我写的是不是你提问的内容
<!--在<head与</head标签中写CSS代码,代码完成后调用就可以了,看示例:--<html<head<title控制A标签中的链接文字</title<style type="text/css"
.color{color:#3399CCtext-decoration:nonefont-weight:bold}/*链接设置*/
.color:visited{color:#3399CCtext-decoration:nonefont-weight:bold}/*访问过的链接设置*/
.color:hover{color:#CF0000text-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