可以利用CSS的伪类实现:
a:link,定义正常链接的样式;
a:visited,定义已访问过链接的样式;
a:hover,定义鼠标悬浮在链接上时的样式;
a:active,定义鼠标点击链接时的样式。
例子:
<!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> <style type="text/css"> a:link { color:#3C3C3C; text-decoration:underline; } a:visited { color:#9EB2BB; text-decoration:none; } a:hover { color:#FF00FF; text-decoration:none; } a:active { color:#D200D2; text-decoration:none; } </style> <a href="#" target="black">这只是一条链接</a> </head> <body> </body> </html>
原文链接:https://www.qiquanji.com/post/7168.html
本站声明:网站内容来源于网络,如有侵权,请联系我们,我们将及时处理。
微信扫码关注
更新实时通知