<a href=....>链接 ,去掉链接下面的下划线
加 <style type="text/css">
<!--
a:link {
text-decoration: none;
}
a:visited {
text-decoration: none;
}
a:hover {
text-decoration: none;
}
a:active {
text-decoration: none;
}
-->
</style>
这样一个样式就可以了text-decoration: none;这个代表没有下滑线,以上代码是始终没有下滑线
Friend:网友(2008-02-20 11:29:17)
直接a{text-decoration:none;}即可:)