[CSS3] 하이퍼링크에 밑줄 제거

1. 설명

- HTML a 태그 하이퍼링크에는 파란색 텍스트와 밑줄이 있음.

- CSS3 text-decoration 프로퍼티로 하이퍼링크 밑줄 제거


2. 사용법

> text-decoration : none | underline | overline | line-through;


3. 예시

1
<a href="https://hkand.blogspot.com" style="text-decoration : none">HKAND 블로그</a>

4. 참고

- https://www.w3.org/TR/css-text-decor-3


끝.