2017-04-07 09:06:52 css如何去掉a标签的下划线?CSS怎么去掉A标签的下划线样式?
css怎么去掉a标签的下划线样式?
答:text-decoration:none解决取消去掉下划线。
a{text-decoration:none}
去掉a默认下划线样式
a:hover{text-decoration:none}
鼠标悬停在超链接文字上时不显示下划线
.abc a{text-decoration:none}
只去掉class=abc内a标签的下划线,去掉指定对象内a链接下划线