伪链接
Posted sun-yx
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了伪链接相关的知识,希望对你有一定的参考价值。
<style type="text/css">
a{
text-decoration: none;
color: black;
} /*未访问的链接,和a{}相同并且同时存在会覆盖a{}*/
a:link{
color: darkblue;
} /*鼠标移动到超链接上时*/
a:hover{
text-decoration: underline;
color: darkred;
} /*被选定的超链接,鼠标点击的一瞬间*/
a:active{
text-decoration: underline;
color: yellow;
} /*已访问的超链接,当鼠标点击过后*/
a:visited{
color: lightblue;
} /*访问过后的超链接*/
</style>
以上是关于伪链接的主要内容,如果未能解决你的问题,请参考以下文章
CSSCSS 复合选择器 ④ ( 链接伪类选择器 | a:link 默认样式 | a:visited 已访问样式 | a:hover 鼠标移动样式 | a:active 选定链接样式 )