html,css5일차 position 부모 요소에relative로 기준을 잡고 자식요소에는 absolute를 사용하면 부모요소를 기준으로 좌표가 잡힌다 #container{ width: 500px; height: 300px; border: 3px solid black; overflow: hidden; position: relative; } .circle{ position: absolute; width: 100px; height: 100px; border-radius: 50% 50%; } #red{ background-color: red; left: 20px; top: 20px; } #green{ background-color: green; right: 20px; top: 20px; } #blue{ bac..