티스토리 뷰
- 소 스 -
<HEAD>
<TITLE> 링크에 밑줄 없애기 </TITLE>
<style type="text/css">
a:link { color: red; text-decoration: none;}
a:visited { color: black; text-decoration: none;}
a:hover { color: blue; text-decoration: underline;}
a:link { color: red; text-decoration: none;}
a:visited { color: black; text-decoration: none;}
a:hover { color: blue; text-decoration: underline;}
</style>
- 해 석 -
style 소스의 type = text를 제어하는 css로 한다.
a:link : 클릭하지 않은 링크
a:visited : 한번 클릭했던 혹은 다녀갔던 링크
a:hover : 링크를 클릭하려고 마우스를 가져갔을 때
decoration : 밑줄
none : 없는 상태
underline : 있는 상태
a:active : 링크부분에서 마우스를 누르고 있는 동안의 상태
- 해 석 -
style 소스의 type = text를 제어하는 css로 한다.
a:link : 클릭하지 않은 링크
a:visited : 한번 클릭했던 혹은 다녀갔던 링크
a:hover : 링크를 클릭하려고 마우스를 가져갔을 때
decoration : 밑줄
none : 없는 상태
underline : 있는 상태
a:active : 링크부분에서 마우스를 누르고 있는 동안의 상태
'개발 > 개발 자료' 카테고리의 다른 글
(Android) 1강 - 달력만들기 3. 이전, 다음달 버튼 넣어보기 (13) | 2014.02.26 |
---|---|
(Android) 1강 - 달력만들기 2. 요일넣기와 시작 요일 맞추기 (0) | 2014.02.26 |
(Android) 1강 - 달력만들기 1. Calendar 만져보기 (4) | 2014.02.24 |
(PHP) JSP에서도 날 괴롭히던 한글 인코딩 문제 해결하기 (0) | 2014.02.20 |
(PHP) mysql 과 mysqli 의 차이점? 무엇이 다른가 (0) | 2014.02.20 |
댓글