如何设置连接后文字的颜色
- 提问者网友:原来太熟悉了会陌生
- 2021-07-15 22:48
- 五星知识达人网友:一秋
- 2021-07-16 00:25
<html><body link=#00ff00 vlink=#ff0000 alink=#ffff00 bgcolor=#ffffff>
<a href="file:///D|/PHP/wamp/www/Myhomepage/html/page3_7.htm">连接另一份文件html</a>
</body></html>
LINK 是未连接 vlink是鼠标点击时的颜色 alink是连接后的颜色
- 1楼网友:等灯
- 2021-07-16 06:29
- 2楼网友:纵马山川剑自提
- 2021-07-16 05:02
在head里输入a:link{color:#ffffff}
a:visited{color:#ffffff}
a:hover{color:#ffffff}
a:active{color:#ffffff}
- 3楼网友:英雄的欲望
- 2021-07-16 04:04
<style type="text/css"> <!-- a:link { color: #000000; text-decoration: none; } a:visited { text-decoration: none; color: #666666; } a:hover { text-decoration: none; color: #999999; } a:active { text-decoration: none; color: #FF0000; } --> </style>
link 链接文本颜色 visited已访问链接颜色 hover鼠标滑过颜色 active 鼠标按下时的颜色
- 4楼网友:第四晚心情
- 2021-07-16 03:16
<style type="text/css"> <!--
a:link { color: #999999; text-decoration: none; } a:visited { color: #999999; text-decoration: none; } a:hover { color: #FF0000; text-decoration: none; } a:active { color: #999999; text-decoration: none; }
--> </style>
呵
- 5楼网友:平生事
- 2021-07-16 01:42
你可以用javascript脚本编写,写一个CSS样式出来 链接时套用这个样式就可以了