当前位置: 代码迷 >> HTML/CSS >> HTML 取消超链接上划线
  详细解决方案

HTML 取消超链接上划线

热度:99   发布时间:2012-10-08 19:54:56.0
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>
?

?

  相关解决方案