<style type="text/css">
<!--
.atitle {
font-size: 12pt;
color: #008278;
text-decoration: none;
}
.atime {
font-size: 12pt;
color: #999999;
text-decoration: none;
}
-->
</style>
</head>
<body><A HREF="/xiaofenguser/1041830333599" CLASS="atitle"> 
                  JAVA资源
                  </A>

解决方案 »

  1.   

    所有链接不出现底线:
    <style>
    <!--
    A:link {text-decoration: none}
    A:visited {text-decoration: none}
    A:active {text-decoration: none}
    -->
    </style>某个链接不出现底线: 
    <A HREF="Your Link" STYLE="text-decoration: none">TEST</A><a href="javascript:self.close()">『关闭窗口』</a>嗬嗬,看明白了吗?
      

  2.   

    看不明白, .atitle  前面有个点 什么意思?
    <!--  怎么还注释掉了?
    CLASS 是什么意思?
      

  3.   

    加上
    <style type=text/css>
    a:link {text-decoration:none}
    a:active {text-decoration:none}
    a:visited {text-decoration:none}
    a:hover {text-decoration:none}
    </style>
      

  4.   

    <style>
    <!--
    A:link {text-decoration: none}
    A:visited {text-decoration: none}
    A:active {text-decoration: none}
    -->
    </style>
    上面的呢,是写在你的jsp页面中的,如果,你单独写一个文件,要别的文件调用这个文件的话,就不需要了<!---->这个,就不需要了
      

  5.   

    晕了又多了一个,我试了一下。
    a:link {text-decoration:none}
    a:active {text-decoration:none}
    a:visited {text-decoration:none}
    a:hover {text-decoration:none}中  a:visited {text-decoration:none}  是去掉下线的。
    剩下的
    a:link {text-decoration:none}
    a:active {text-decoration:none}
    a:hover {text-decoration:none}都是干嘛的?