html 링크 없애는데, javascript css style 적용으로 없애는 방법
2018. 5. 12. 01:52ㆍ99. 정리전 - IT/29. IT 잡동지식
출처 : https://stackoverflow.com/questions/39331464/removing-visited-style-in-href-attribute
질문 : 이런 html 스타일을 적용하고 싶은데 어떻게 해야 하나요?
<a style="text-decoration:none;" >
답변 : 이하와 같이 하면 됩니다.
<html>
<head>
<style>
a:hover {
text-decoration: none;
}
</style>
</head>
<body>
<a href="#">Link</a>
</body>
</html>
<html>
<body>
<!-- Or you could use Javascript-->
<a href="#" onmouseover = "this.style.textDecoration = 'none'">Link 2</a>
</body>
</html>