
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<style>
.myclass {
color:aqua;
background-color: blue;
}
#myid{
color:rgb(131, 59, 198);
background-color: brown;
}
</style>
</head>
<body>
<h1 class="my class">나는 클래스 헤딩태그입니다</h1>
<h1 id="myid"> 나는 아이디 헤딩 태그입니다.</h1>
</body>
</html>

그리고 즉각적으로 반영되지 않고, open with live server를 누르면 새 창이 뜨면서 반영이 되는데 원래 그런 건가요?
