Keyword


DOM

Document Object Model 이라고 합니다. 트리 구조로 이루어진 객체 모델이다.

<!DOCTYPE html>
<html>
  <head>
    <title>DOM</title>
  </head>
  <body>
    <h1>
      DOM이란?
    </h1>
    <p>
      Document Object Model
    </p>
  </body>
</html>

(parsing) ⇒

스크린샷 2022-03-31 오후 10.30.34.png

CSSOM

CSS Object Model 이라고 함, 해당 객체 모델 또한 트리 구조로 이루어짐

p,div{
  margin-top : 5px;
}

.error{
  color : red;
}

스크린샷 2022-03-31 오후 10.52.52.png