美文网首页
a标签 CSS样式 鼠标悬停、点击、点击后、选定

a标签 CSS样式 鼠标悬停、点击、点击后、选定

作者: 念_ae7b | 来源:发表于2018-11-21 17:12 被阅读0次
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=gb2312" />
    <style type="text/css">
    a:link { color: #eee; text-decoration: none; }/* 未访问的链接 */
    a:visited { color: #999; text-decoration: line-through; } /* 已访问的链接 */
    a:hover { color: #fff; text-decoration: underline; }/* 鼠标移动到链接上 */
    a:active { color: #F00; } /* 选定的链接 */
    </style>
    </head>
    <body>
    <p><a href="#">这里是链接</a></p>
    </body>
    

    相关文章

      网友评论

          本文标题:a标签 CSS样式 鼠标悬停、点击、点击后、选定

          本文链接:https://www.haomeiwen.com/subject/unicqqtx.html