a:link { /*链接初始样式*/
font-size: 22px;
color: red;
text-decoration: none;
}
a:visited{ /*链接访问后样式*/
font-size: 22px;
color: green;
text-decoration: none;
}
a:hover{ /*鼠标放到链接上样式*/
color: blue;
text-decoration: underline;
}
a:active{ /*链接被按下时样式*/
text-decoration: line-through;
}
LoVe HAte 爱恨原则
哥哥,你用的是什么 gif 录屏软件呀? 本帖最后由 不二如是 于 2017-2-13 15:04 编辑
零度非安全 发表于 2017-2-13 13:47
哥哥,你用的是什么 gif 录屏软件呀?
mac上的软件…
Win上我推荐用icecream screen recorder 不二如是 发表于 2017-2-13 15:01
mac上的软件…
这句话好有杀伤力{:10_275:} 零度非安全 发表于 2017-2-13 15:03
这句话好有杀伤力
win上
icecream screen recorder
也不错哦
不二如是 发表于 2017-2-13 15:04
win上
icecream screen recorder
也不错哦
哥哥,好大呀,有没有小点的款式 Сhover±hover 学习一下! 不二,强无敌~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>超链接动画演示</title>
<style type="text/css">
body {
text-align: center;
margin-top:333px;
}
a {
font-size: 55px;
text-decoration: none;
color:white;
transition: all 1.9s;
/* 淡入淡出 */
}
a:hover{
color:black;
}
</style>
</head>
<body>
<a href="http://bbs.fishc.com/forum-337-1.html" target="_thank">小天才养殖场,快来闯一闯</a>
</body>
</html> 发现visited无法修改link中的font-size。
{:10_297:}
<!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>
页:
[1]