回复才能见的源代码:网页设计问题

来源:百度文库 编辑:神马品牌网 时间:2024/04/30 14:15:11
怎么样才能消除网页设计过程中链接文字的下划线

加入代码
<style type="text/css">
<!--
a:link { text-decoration: none;color: blue}
a:active { text-decoration:blink}
a:hover { text-decoration:underline;color: red}
a:visited { text-decoration: none;color: green}
-->
</style>

<style>a:link{text-decoration:none}a:visited{text-decoration:none}a:active{text-decoration:none}a:hover{text-decoration:underline}</style>放在<head>中间