|
发表于 2020-1-9 16:25:00
|
显示全部楼层
发现visited无法修改link中的font-size。
- <!doctype html>
- <html>
- <head>
- <meta charset="utf-8">
- <title>超链接大全</title>
- <style type="text/css">
- a:link{
- font-size: 93px;
- color:#000;
- font-family: "NSimSun";
- text-decoration: none;
- }
- a:visited{ /*链接访问后样式*/
- font-size: 22px;
- color: green;
- text-decoration: none;}
- a:hover{
- font-size: 66px;
- color: #6F6;
- font-family: "HeiTi";
- text-decoration: overline;
- }
- a:active{
- font-size: 100px;
- color: #6F6;
- text-decoration: line-through;
- }
- </style>
- </head>
- <body>
- <div>
- <a href="http://bbs.fishc.com/forum-33-1.html" target="_blank" title="无敌吹水阁">吹水带来思想的碰撞
- ,凡开卷有益</a>
- </div>
- </body>
- </html>
复制代码 |
|