<head> 와 </head> 사이에 아래 소스를 삽입하세요.
<style type="text/css">
<!--
A:link   { text-decoration: none; }
A:visited   { text-decoration: none; }
A:active   { text-decoration: none; }
A:hover   { text-decoration: none; color: #ff0000; }
//-->
</style> 
A:link - 방문한 적이 없는 링크
A:visited - 방문한 적이 있는 링크
A:active - 마우스를 눌렀을 때의 링크 상태
A:hover - 마우스가 링크 위에 올라갔을 때
 

--------------------------------------------------------------------------------
 
text-decoration: none; <--- none 밑줄을 없애는 문법
text-decoration: underline; <--- 언더라인 말안해도 알겠죠 ?
text-decoration: overline; <--- 오버라인 ( 윗줄이 생성 )
color : #ff0000; <--- #ff0000 = red
색상을 코드값으로 표현 할땐 # 을 꼭 기입하세요 !
색상명을 적을땐 # 이 들어가면 안되겠죠 ? red...black...

+ Recent posts