HTML中的A标签分为a:link ,a:visited ,a:hover,a:active四种状态。分别设置去掉下划线和颜色即可。示例如下:

a:link {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    color: #44c4a0;
}

a:visited {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    color: #44c4a0;
}

a:hover {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    color: #44c4a0;
}

a:active {
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
    background: none;
    color: #44c4a0;
}

原文:https://www.jianshu.com/p/51b644c6b1ac