HTML 取消超链接下划线

      取消超链接的下划线的方法是:

 

<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>
 

 

posted @ 2011-06-09 10:48  老去的JAVA程序员  阅读(299)  评论(0编辑  收藏  举报