a标签去除默认样式
Posted yanglang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了a标签去除默认样式相关的知识,希望对你有一定的参考价值。
1 /*包含以下四种的链接*/ 2 a { 3 text-decoration: none; 4 } 5 /*正常的未被访问过的链接*/ 6 a:link { 7 text-decoration: none; 8 } 9 /*已经访问过的链接*/ 10 a:visited { 11 text-decoration: none; 12 } 13 /*鼠标划过(停留)的链接*/ 14 a:hover { 15 text-decoration: none; 16 } 17 /* 正在点击的链接*/ 18 a:active { 19 text-decoration: none; 20 }
以上是关于a标签去除默认样式的主要内容,如果未能解决你的问题,请参考以下文章