L、V、H、A的应用

来源:互联网 发布:sql创建学生数据库 编辑:程序博客网 时间:2024/06/07 02:41
<!DOCTYPE html><html lang="en"><head>    <meta charset="UTF-8">    <style>        /*伪类选择器*/        /*默认链接状态*/        a:link{            color: yellow;        }        /*以访问状态*/        a:visited{            color: green;        }        /*鼠标悬浮状态*/        a:hover{            color: red;        }        a:active{            color: orange;        }    </style>    <title></title></head><body><a href="http://www.csdn.net/">CSDN</a></body></html>
0 0
原创粉丝点击