回复:怎么样去掉超级连接的下划线啊?
这是通过CSS来实现的,比如我给你打个简单的比方,你将以下代码放在模版源文件的<head></head>之间,就可以实现链接的标题不显示下划线:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
<title>无标题文档</title>
<style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:active {
text-decoration: none;
}
-->
</style></head>