기타팁

링크에 밑줄없애기

by cs posted Mar 10, 2008
?

단축키

Prev이전 문서

Next다음 문서

ESC닫기

크게 작게 위로 아래로 댓글로 가기 인쇄 수정 삭제

<style type="text/css">
a:link {text-decoration : none; }
a:visited {text-decoration : none; color=black;}
a:active {text-decoration : none; color = blue;}
a:hover {text-decoration : none; color:red;}
</style>

text-decoration : none란 거는 밑줄을 안생기게 하겠다는 거다.
그다음줄 visited는 처음 상태의 글자색을 말하고
acrive는 클릭했을때의 색
hover은 마우스 오버시 색을 말한다.

홈페이지를 만들구 글자색두 페이지에 어울리게 설정했는데
링크땜에 파란색과 붉은색이 난무하게 되는 불상사를 막아주는 태그다