日期:2014-05-17  浏览次数:20579 次

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

?