CSS之超链接伪类

Posted 辉小歌

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CSS之超链接伪类相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<meta name="viewport" content="width=device-width, initial-scale=1.0">
	<title>辉小歌</title>
	<style type="text/css">
		a
			text-decoration: none;
			/*去除超链接的下划线*/
			color: red;
		
		/*鼠标的悬浮状态*/
		a:hover
			color: blue;
		
		/*鼠标按住未释放的状态*/
		a:active
			color: green;
		
	</style>
</head>
<body>
	<a href="http://www.baidu.com">点击跳转</a>
</body>
</html>

以上是关于CSS之超链接伪类的主要内容,如果未能解决你的问题,请参考以下文章

CSS :hover伪类选择器

css伪类

CSS 伪类选择器

使用内联 CSS 定义链接的伪类样式 [重复]

css总结12:CSS 伪类(Pseudo-classes)

CSS进阶篇——伪类 (pseudo classes)