Viewport2
viewport maximum-scale, minimum-scale
documentroot elementelement elementelementattribute"href"elementelementtext"my title" text"my link"text"my header"더보기The element is a container for meta-data(a set of data that describes and gives information about other data) and is placed between the tag and the tag.HTML 문서 요소의 viewport 설명 ① minimum-scale=1.0maximum-scale=1.0접속자가 컨텐트를 뷰포트 기준 100%(1.0)까지 확대 및 축소할 수 있게 설정하였습니다. minimum-scal..
position absolute의 height 설정
position: relative + position: absolute"position: relative" 객체는 document의 정상적인 흐름을 따르지만, "position: absolute" 객체는 그 흐름에서 튀어나와 분리됩니다. position 속성에 absolute 값을 지닌 child(자식) 객체에 top, bottom, left, right, height, width 값을 설정할 때 "position: relative" 값을 가진 가장 가까운 parent(상위, 부모) 객체를 기준으로 지정합니다. 바로 상위 객체에 position 속성으로 relative 값을 가진 객체가 없을 경우 찾을 때까지 더 상위 객체로 거슬러 올라갑니다. 만약에 없을 경우에는- "document body"를 이용하..