Markup Language/HTML, CSS
a태그 href 링크 밑줄 없애기, Underline 제거
coding-restaurant
2020. 2. 26. 11:35
728x90
728x90
맨날 까먹어서 검색하는 text-decoration ....
특정 부분의 text-decoration 없애기
html에서 쓰는 인라인 태그 방식은 아래와 같다.
style="text-decoration:none"
<a href="http://www.google.co.kr/" style="text-decoration:none">Google 검색</a>
css에서 쓴다면 아래와 같다. 적용되지 않는다면 !important를 세미콜론 앞에 추가해준다.
hover는 마우스를 대상물 위에 얹었을 때이다.
a { text-decoration:none !important }
a:hover { text-decoration:none !important }
모든 a태그의 text-decoration 없애기
css에서 아래와 같이 걸어준다.
a { text-decoration:none }
728x90
728x90