note

CSS 가상선택자 사용 본문

CSS/기본

CSS 가상선택자 사용

투한 2012. 2. 1. 15:10



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>CSS 가상 클래스 선택자 사용</title>
<style type="text/css">
<!-- 
link : 일반
visited : 방문했던 사이트
active : 클릭 뒤
hover : 마우스 오버
--!>
a:link{text-decoration:none;color:RED}
a:visited{text-decoration:none;color:orange}
a:active{text-decoration:none;color:yellow}
a:hover{text-decoration:underline;color:blue}
</style>
</head>
<body>
<a href="http://www.daum.net">다음</a>
</body>
</html>