[HTML] 링크 효과 가운데 줄 생기게 하기
2021. 5. 21. 00:46
1. 링크 된 곳 마우스 갖다대면 가운데 줄 생기게 하기
html 편집하기 에서 <body> 밑에 아래소스 복사해서 붙여넣기
<style type=text/css>
A:link {text-decoration: none}
A:active {text-decoration: none}
A:visited {text-decoration: none}
A:hover {text-decoration: line-through}
</style>