为何层上的文字一设置链接颜色就会变 请各位高手指教
贴子整理中不是有吗?
在< head>..< /head>中加上以下指令(注意在使用时去掉“<”后面的空格):
< HEAD>
< TITLE>tip
< style>
< !--
A{text-decoration:none}
-->
< /style>
< /HEAD>
或:
< 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>
-----------------------------------------------------------------
把decoration换成color就可以了