개발/HTML, CSS
-
[실무] CSS 팁개발/HTML, CSS 2022. 6. 21. 00:54
1. Page 크기의 Height 설정하는 법 + html 태그는 viewport height을 따름. body height 100%로 설정하면 html height을 따르는데 html height을 명시적으로 표시 안하면 parent height을 0으로 간주해서 body height도 0. 따라서 html height을 100%로 설정한 뒤 body height을 100%로 설정하거나, 아니면 body height을 100vh로 설정하는 식 + min-height으로 설정할 경우, body가 viewport보다 커지면 오른쪽에 vertical scrollbar(10px width)가 생기면서 전체 page width가 viewport를 초과하여 horizontal scrollbar가 생기는 경우가 있..
-
DOM model개발/HTML, CSS 2022. 6. 7. 18:21
*복습 자료라서 뻔한 내용은 생략 Summary. 1. The Document Object Model (DOM) connects web pages to scripts or programming languages by representing the structure of a document—such as the HTML representing a web page—in memory. Usually it refers to JavaScript, even though modeling HTML, SVG, or XML documents as objects are not part of the core JavaScript language + As an object-oriented representation of the ..