CSS Links Text Decoration 이 text-decoration속성은 주로 링크에서 밑줄을 제거하는 데 사용됩니다. 예a:link { text-decoration: none;} a:visited { text-decoration: none;} a:hover { text-decoration: underline;} a:active { text-decoration: underline;} This is a linkNote: a:hover MUST come after a:link and a:visited in the CSS definition in order to be effective.Note: a:active MUST come after a:hover in the CSS definition in ..