标签:
超链接颜色
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>无标题文档</title> <style type="text/css"> a:link {color:#966; text-decoration:none;/* 未访问的链接*/ } a:visited {color:#F3C; text-decoration:none;/*已访问的链接*/ } a:hover {color:#090; text-decoration:none;/*鼠标悬停时*/ } a:active {color:#F00; text-decoration:none;/*鼠标点击后*/}</style> </head> <body> <a href="https://www.baidu.com">百度</a> </body> </html>
标签:
原文地址:http://www.cnblogs.com/zoubizhici/p/5487599.html