IT노트(구)/HTML/CSS
(html/css) 링크 클릭 보라색 흔적 없애기
스프링연구소
2015. 11. 29. 22:41
링크는 기본적으로 보라색 흔적이 남는다!
깔끔하게 흔적을 지우고 싶다면(전부 검은색으로 보이도록)
다음과 같은 css를 적용하면 된다!(<head></head> 등 원하는 곳에 넣어서 사용하자!)
<style>
a { text-decoration: none; color: black; }
a:visited { text-decoration: none; }
a:hover { text-decoration: none; }
a:focus { text-decoration: none; }
a:hover, a:active { text-decoration: none; }
</style>