ABOUT ME

-

Today
-
Yesterday
-
Total
-
  • A Tag 색깔 변경
    Programing/HTML 2012. 11. 15. 00:03

    A Tag 사용시 기본적으론 링크가 파란색이고, visited시 투박한 보라색 색상이 나온다.

    하지만 아래와 같이 CSS를 주면 원하는 색상으로 수정이 가능하다.

    <style type="text/css">
    /* text-decoration:none  ->  링크에 밑줄이 없도록 (밑줄이 필요하다면:underline) */
    A:link {text-decoration:none; color:#3B5459;} /* 디폴트, 즉 클릭 전 */
    A:visited {text-decoration:none; color:#3B5459;} /* 해당 링크를 방문했을 경우 */
    A:active {text-decoration:none; color:#3B5459;} /* 방문중인 링크(즉 클릭했을때) */
    A:hover {text-decoration:none; color:#3B5459;} /* 링크에 마우스 커서가 올라갔을때 */
    </style>
Designed by Tistory.