position: relative;'현재 있는 위치' 기준초기.locate { position: relative; left: 30px; top: 30px;}.parent { margin-left: 100px;}position: static;웹사이트의 기본으로 돌아가겠다. left나 top 위치 속성 무시.locate { position: static; left: 30px; top: 30px;}.parent { margin-left: 100px;}.parent { position: static; margin-left: 100px;}position: absolute;'부모 절대값' 기준만약 부모 태그가 relative / absolute / fixed 중 하나가 아니라면 태그를 부모로 삼..