Frontpage中对文字超链接,如何设置当前超链接颜色为“紫色”,超链接颜色为“黑色”,已访问的超链接颜色
4 回答
MM们
TA贡献1886条经验 获得超2个赞
用CSS定义呀,给你段代码参考,颜色、字体大小你自己随便改:
<style type="text/css">
<!-- A:link {text-decoration: none; color:BLACK}
A:visited {text-decoration: none; color: BLUE}
A:active {text-decoration: none; color: #FF0000}
A:hover {text-decoration: underline; color: FF0000}
body{font-size=9pt}
TH{FONT-SIZE: 9pt}
TD{ FONT-SIZE: 9pt}-->
</style>
把上面代码放入<head></head>之间。
添加回答
举报
0/150
提交
取消