初次申领没办法注册:Frontpage中如何把超链接的下划线去掉

来源:百度文库 编辑:查人人中国名人网 时间:2024/04/30 02:34:19

去下划线是通过样式设计实现的。
查看帮助可以找到有关样式表单的使用,不过不太全面。
也可以直接在代码的<head></head>之间添加下列内容:
<style type="text/css">
<!--
a:link {
color: #0000FF;
text-decoration: none;

}

a:visited {
color: #0000FF;
text-decoration: none;

}
a:active {
color: #FF0000;
text-decoration: none;

}
A:hover {
text-decoration: none;
color: #FF0000;

}
-->
</style>