600196同仁堂股吧:文字超链接的横线

来源:百度文库 编辑:高考问答 时间:2024/05/02 08:46:17
各位大哥大姐!请教你们:在Fronpage中制作网页时,如何删除网页上文字超链接的横线?谢谢

在<HEAD></HEAD>之间加上一段代码
<STYLE>
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
</STYLE>
就可以去掉下划线了