【CSS】【超链接】css中a标签常见样式


    <style>
        a {
            /* 取消下划线 */
            text-decoration: none;
            /* 取消选中时的背景色 */
            -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        }

        /* 已读时的字体颜色 */
        a:visited {
            color: red;
        }

        /* 点击时的字体颜色 */
        a:active {
            color: dodgerblue;
        }
    </style>

猜你喜欢

转载自blog.csdn.net/u013718730/article/details/90512097
今日推荐