Absolute

position & display (relative , absolute,inline,block)
기본적인 position 3가지 relative absolute fixed 사용법 선택자 { position : 값 ; } relative relative 자체로만은 아무 변화가 없다. top,left,right,bottom property를 사용가능하게 해준다. 사용하기 div { height: 100px; margin: 10px; } div:nth-child(1) { background-color: red; left: 10px; } div:nth-child(2) { background-color: blue; position: relative; } div:nth-child(3) { background-color: yellow; position: relative; left: 100px; } div:nth..