«

鼠标跟随时的超链接样式

MitSeek 发布于 阅读:38 CSS


<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8">
        <title></title>
        <style>
            /* div{
                background: #333333;
            } */
            a{
                display: block;
                width: 200px;
                height: 50px;
                color: white;
                text-decoration: none;
                line-height: 50px;
                text-align: center;
                font-weight: bold;
                font-size: 20px;
                border-radius: 20px;
                letter-spacing: 10px; /* 字符间距 */
                border: 1px solid red;
            }
            a:link{
                background: #000000; /* 未被防问的样子 */
            }
            a:visited{
                background:#0000ff;/* 访问后的样子 */
            }
            a:hover{
                background: #ff7f24;/* 悬停时的样子 */

            }
            a:active{
                background:#00ff00;/* 单击未松开的样子 */
            }
        </style>
    </head>
    <body>
        <div>
            <a href="#">英   语</a>
        </div>
    </body>
</html>

CSS