개발자의 끄적끄적

[html/css] css a tag remove underline example / css a 태그 밑줄 제거하는 방법 본문

개발/html & css

[html/css] css a tag remove underline example / css a 태그 밑줄 제거하는 방법

효벨 2021. 10. 24. 02:00
728x90
반응형

[html/css] html a tag remove underline example / html a 태그 밑줄 제거하는 방법

 

 

html 에서 a 태그를 사용하다보면

 

a 태그에 포함된 글자들이

 

밑줄이 생깁니다.

 

그럴때는

 

아래 css 속성을 이용하여

 

밑줄을 없앨 수 있습니다.

 

a {
  text-decoration-line: none;
}

 

참고들 하세요!

반응형
Comments