.NET프로그래밍/CSS 2.0
17. 링크관련스타일
holland14
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>
< 실행결과 >
- 처음방문링크
- 방문 후
- 클릭할 때
- 마우스 오버시