17. 링크관련스타일
.NET프로그래밍/CSS 2.0 2009. 7. 28. 20:33 |<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>링크관련스타일</title>
<style type="text/css"">
a:link { color:Red; text-decoration:none; } /* 처음 방문 링크 */
a:visited { color:Black; text-decoration:overline; } /* 방문 후 */
a:active { color:White; background-color:Black; } /* 클릭할 때 */
a:hover { font-size:15pt; border:1px dotted red; } /* 마우스 오버시 */
</style>
</head>
<body>
<a href="http://www.nate.com/">네이트</a>
</body>
</html>
< 실행결과 >
- 처음방문링크
- 방문 후
- 클릭할 때
- 마우스 오버시
'.NET프로그래밍 > CSS 2.0' 카테고리의 다른 글
20. 리스트(목록)관련스타일 (0) | 2009.07.29 |
---|---|
18. 스크롤바관련스타일 (0) | 2009.07.28 |
16. 커서관련스타일 (0) | 2009.07.28 |
15. 배경관련스타일 (0) | 2009.07.28 |
14. 외곽선(테두리) (0) | 2009.07.28 |