링크 밑줄만 없애기
<style type="text/css">
a {text-decoration:none;}
</style>
링크에 마우스 올렸을때 글자색 변하면서 굵고 밑줄생김(전체)
<style>
<!--
a:link, a:visited, a:active {
color: blue;
text-decoration: none;
}
a:hover {
color: red;
text-decoration: underline;
font-weight: bold;
}
-->
</style>
</head>
개별 링크 부분에 밑줄 없애기는 클래스지정
<style>
<!--
a.aa:link, a.aa:visited, a.aa:active {
color: blue;
text-decoration: none;
}
a.aa:hover {
color: red;
text-decoration: underline;
font-weight: bold;
}
-->
</style>
</head>
<a href="링크 경로" class=aa>제목</a>
-----------------------------------
a:link 방문하지 않은 링크
a:visited 방문한 링크
a:active 마우스를 클릭했을 때
a:hover 마우스 올렸을 때
color: blue 글자색상
text-decoration:none 밑줄 생기지 않게
(생기지않게 none 생기게 underline)
font-weight: bold; 글자굵게
font-family:굴림; 글자종류
font-size:11pt; 글자크기
'컴퓨터 > 언어,프로그래밍' 카테고리의 다른 글
방문자 카운터 PHP 소스 (text파일 이용, mysql을 이용) (1) | 2008.12.20 |
---|---|
PHP 시간관련 함수 (3) | 2008.12.18 |
<PHP> ord(),chr()함수 (0) | 2008.12.10 |
아스키코드, 아스키코드표(ASCII Code) - 2진수/8진수/10진수/16진수 표 (0) | 2008.12.09 |
자바스크립트 >> 라디오버튼 >> 체크상태 >> 검사방법 (0) | 2008.11.13 |