DOM(Document Object Model)
불필요한 Layout을 줄여야 한다.
파싱
객체모델
DOM
Document Object Model 이라고 합니다. 트리 구조로 이루어진 객체 모델이다.
<!DOCTYPE html>
<html>
<head>
<title>DOM</title>
</head>
<body>
<h1>
DOM이란?
</h1>
<p>
Document Object Model
</p>
</body>
</html>
(parsing) ⇒
CSSOM
CSS Object Model 이라고 함, 해당 객체 모델 또한 트리 구조로 이루어짐
p,div{
margin-top : 5px;
}
.error{
color : red;
}
⇒