海尔软件研发面试经验:Frontpage中如何把超链接的下划线去掉

来源:百度文库 编辑:神马品牌网 时间:2024/04/30 06:12:20

去下划线是通过样式设计实现的。
查看帮助可以找到有关样式表单的使用,不过不太全面。
也可以直接在代码的<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>