A태그 속성값 text-decoration 없애기

기록지·2021년 8월 29일
0

a태그 속성값 없애주는 방법

a:hover { text-decoration: none; }
a:link { text-decoration: none; }
a:visted { text-decoration: none; }
a:active { text-decoration: none; }

안될때
a { text-decoration:none !important }

0개의 댓글