首先<a>标签有四种状态,分别为:
- a:link - 普通的、未被访问的链接
- a:visited - 用户已访问的链接
- a:hover - 鼠标指针位于链接的上方
- a:active - 链接被点击的时刻
为了使样式生效,需要注意:
a:hover 必须位于 a:link 和 a:visited 之后
a:active 必须位于 a:hover 之后
这样,<a>可以使用文本样式来修改比如:
a:link {background:#B2FF99;color:red;} /* 未被访问的链接 */
a:visited {background:#FFFF85;font-family:color:gray;} /* 已被访问的链接 */
a:hover {background:#FF704D;text-transform:uppercase;} /* 鼠标指针移动到链接上 */
a:active {background:#FF704D;} /* 正在被点击的链接 */
加类:
.div1 a:link, .div2 a:link {color: blue} /* 未被访问的链接 蓝色 */
.div1 a:visited , .div2 a:visited {color: blue} /* 已被访问过的链接 蓝色 */
.div1 a:hover, .div2 a:hover {color: blue} /* 鼠标悬浮在上的链接 蓝色 */
.div1 a:active , .div2 a:active {color: blue} /* 鼠标点中激活链接 蓝色 */
去除下划线
<a style=" text-decoration: none;" href="#">我是下划线</a>
以上文章内容来自:
https://blog.csdn.net/yeyuwanfeng/article/details/81907856
https://blog.csdn.net/u013318615/article/details/79153844
来源:oschina
链接:https://my.oschina.net/u/2885163/blog/3029374