body에 background-color 속성을 주면 왜 전체 색상이 바뀔까?

hjnoh·2022년 7월 21일
1
post-thumbnail

인스펙터에서 보면 바디가 분명 화면보다 짧은데도 바디에 백그라운드 컬러를 주면 전체 화면에 적용된다. 왜인지 궁금해서 찾아보니까 의외로 역사적인 얘기에 가까웠다. 아래 스택오버플로우 답변에 기반하여 찾아보면서 조금 살을 붙여봤다.

Stackoverflow: Why does changing the body's background color change the entire page's background?

옛날옛날에.. document 자체의 백그라운드를 설정할 수 있게 해주는 document.bgcolor 라고 하는 것이 있었는데, 2000년 11월 발표된 DOM Level 2 HTML에서 deprecated 되었다. 이를 대체할 수 있었던 document.body.bgColor 또한 HTML 4.01에 추가된 CSS style 사용 장려를 위해서 deprecated 되었다.

이렇게 없어진 document 전용 bgcolor를 대신하기 위해서 마련한 것이 document.body.style.backgroundColor 이다.

따라서 body의 실제 크기와 상관없이, document.body.style.backgroundColor라는 속성은 document의 배경 색상을 바꾸게 된다.

reference

https://developer.mozilla.org/en-US/docs/Web/API/Document/bgColor

2개의 댓글

comment-user-thumbnail
2022년 7월 24일

솔직한 회고 잘 보고 가요~~

답글 달기
comment-user-thumbnail
2022년 8월 8일

맛춤뻡 지켜주새요. 불편합니다.

답글 달기