이것으로 id와 class의 차이점을 알수가 있다.
id와 class중 우선순위는 id 입니다.
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
#name {
background-color: lightblue;
text-align: center;
}
#description {
background-color: red;
text-align: center;
}
</style>
</head>
<body>
<div id="name">balmostory</div>
<div id="description">발모스토리는 코딩관련 글을 매일 업로드하는 블로그입니다.</div>
</body>
</html>
------------------------------------------------------------------------------------------------------------------------------
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.name {
background-color: lightblue;
text-align: center;
}
.description {
background-color: red;
text-align: center;
}
</style>
</head>
<body>
<div class="name">balmostory</div>
<div class="description">발모스토리는 코딩관련 글을 매일 업로드하는 블로그입니다.</div>
</body>
</html>