note

CSS ID선택자 사용 본문

CSS/기본

CSS ID선택자 사용

투한 2012. 2. 1. 15:08


<!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 ID선택자 사용</title>
<style type="text/css">
#ft {font-size:25pt;color:blue;background:yellow}
#ft2 {font-size:30pt;color:red;background:yellow}
#ft3 {font-size:15pt;color:green;background:yellow}
</style>
</head>
<body>
<!-- 앞에 #을 붙이면 ID선택자 사용 (이건 중복사용 불가) 
id 값은 유니크하게 해서 사용해야됨 javascript와 중복방지를 위해서
-->
<span id="ft">기분 좋은 하루</span>
<div id="ft2">뿌잉뿌잉</div>
<p id="ft3">두번머겅</p>
</body>
</html>