CSS Layout - The position Property
position 속성은 요소의 위치 지정 방식의 유형(static, relative, fixed, absolute, sticky)을 지정한다. position:static;HTML 요소는 기본적으로 static 포지션이다. position:static;인 요소는 top, bottom, left, right 속성에 영향을 받지 않는다.div.static { position: static; border: 3px solid #73AD21; } position:relative;normal 포지션에 상대적으로 위치한다.top, bottom, left, right 속성을 지정하면 normal 포지션으로부터 벗어나 수정된다.div.relative { position: relative; left: 30px; borde..
CSS Layout-the display property
display 속성은 레이아웃을 제어하기 위한 가장 중요한 속성이다. the display propertydisplay 속성은 요소가 표시될지 말지, 어떻게 표시될지 지정한다.모든 HTML 요소는 해당 요소의 타입에 따라 기본 display 값이 있다. block, inline이 있다. Block-level Elements항상 새로운 줄에서 시작하고 전체 너비를 가진다., -, , , , , 이 block 요소이다. Inline Elements새로운 줄에서 시작하지 않고 필요한 만큼만 너비를 가진다., , 가 inline 요소다. Display:none;display:none;은 요소를 삭제하거나 생성하지 않고 숨기거나 보여주기 위해 흔히 쓰인다. 요소는 display:none;을 기본으로 쓴다. Ove..