更多"Try it Yourself"下面的例子。
定义和用法
本:链接选择用于选择访问过的链接。
Note:本:链接选择没有已访问过的链接样式。
Tip:使用:访问选择的款式链接访问的网页,则:悬停选择器链接样式,当你鼠标移到他们, :主动选择器,当你点击它们链接样式。
版: | CSS1 |
---|
浏览器支持
在表中的数字指定完全支持选择第一浏览器的版本。
选择 | |||||
---|---|---|---|---|---|
:link | 4 | 7 | 2.0 | 3.1 | 9.6 |
CSS语法
:link {
css declarations ;
}
更多示例
例
选择和风格未访问,访问,悬停和活动链接:
/* unvisited link */
a:link {
color: green;
}
/* visited link */
a:visited {
color: green;
}
/* mouse over
link */
a:hover {
color: red;
}
/*
selected link */
a:active {
color: yellow;
}
试一试» 例
不同风格样式的链接:
a.ex1:hover, a.ex1:active {
color: red;
}
a.ex2:hover, a.ex2:active {
font-size: 150%;
}
试一试» 相关页面
CSS教程: CSS链接
CSS教程: CSS伪类