a标签的CSS伪类,点击后变⾊
可以利⽤CSS的伪类实现:
a:link,定义正常链接的样式;
a:visited,定义已访问过链接的样式;
a:hover,定义⿏标悬浮在链接上时的样式;
a:active,定义⿏标点击链接时的样式。
例⼦:
<style type="text/css">
a:link {
color:#3C3C3C;
text-decoration:underline;
}
a:visited {
color:#0000FF;
text-decoration:none;
}
a:hover {
color:#FF00FF;
text-decoration:none;
}
a:active {
color:#D200D2;
text-decoration:none;
}
</style>
<a href="#" target="black">点我点我</a>
⼀组专门的预定义的类称为伪类,主要⽤来处理超链接的状态。超链接⽂字的状态可以通过伪类选择符+样式规则来控制。伪类选择符包括:
总: a 表⽰所有状态下的连接如 a{color:red}
① a:link:未访问链接 ,如 a:link {color:blue}
② a:visited:已访问链接 ,如 a:visited{color:blue}
③ a:active:激活时(链接获得焦点时)链接的颜⾊ ,如 a:active{color:blue}
④ a:hover:⿏标移到链接上时 ,如 a:hover {color:blue}
⼀般a:hover和a:visited链接的状态(颜⾊、下划线等)应该是相同的。
前三者分别对应body元素的link、vlink、alink这三个属性。
四个“状态”的先后过程是:a:link ->a:hover ->a:active ->a:visited。
另外,a:active不能设置有⽆下划线(总是有的)。
举例:伪类的常见状态值
<style type = “text/css”>
<!--
a {font-size:16px}
a:link {color: blue; text-decoration:none;} //未访问:蓝⾊、⽆下划线
a:active:{color: red; } //激活:红⾊
a:visited {color:purple;text-decoration:none;} //已访问:紫⾊、⽆下划线
a:hover {color: red; text-decoration:underline;} //⿏标移近:红⾊、下划线
如何去掉<a>的下划线:
对超链接下划线设置使⽤代码"text-decoration"
语法:
text-decoration : none || underline || blink || overline || line-through
text-decoration参数:
none :  ⽆装饰
blink :  闪烁
underline :  下划线
line-through :  贯穿线
overline :  上划线
去掉下划线的⽅法就是将其text-decoration设置为none即可。
如:
<style>a{text-decoration:none}</style>
<!--可以在此基础上发挥:如:-->
<style>.myclass a{text-decoration:none}</style>
<style>div a{text-decoration:none}</style>
<!--可以扩展⾄<a>标签的伪类:-->
<style type="text/css">
a:link{text-decoration:none; cursor:pointer; color:red;}
a:visited{text-decoration:overline; cursor:pointer}
a:active{text-decoration:overline; cursor:pointer}
a:hover{text-decoration:overline; cursor:pointer}
.
myclass:hover{text-decoration:overline; cursor:pointer}
</style>
<a>标签的⼀些属性css鼠标点击样式
<a>标签是成对出现的,以<a>开始, </a>结束
属性.
Common -- ⼀般属性
accesskey -- 代表⼀个链接的快捷键访问⽅式
charset -- 指定了链接到的页⾯所使⽤的编码⽅式,⽐如UTF-8
coords -- 使⽤图像地图的时候可以使⽤此属性定义链接的区域,通常是使⽤x,y坐标href -- 代表⼀个链接源(就是链接到什么地⽅)
hreflang -- 指出了链接到的页⾯所使⽤的语⾔编码
rel -- 代表⽂档与链接到的内容(href所指的内容)的关系
rev -- 代表⽂档与链接到的内容(href所指的内容)的关系
shape -- 使⽤图像地图的时候可以使⽤shape指定链接区域
tabindex -- 代表使⽤"tab";键,遍历链接的顺序
target -- ⽤来指出哪个窗⼝或框架应该被此链接打开
title -- 代表链接的附加提⽰信息
type -- 代表链接的MIME类型

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。