div>div{
    width: 100px;
    height: 100px;
}

/* position : 위치를 배치하는 속성 
    - position과 함께 사용하는 속성 : top, bottom, left, right
    - top : 30px <- 위에서부터 30px 떨어지게 만든다.
    - position 값의 종류 : static, realtive, absolute, fixed
    */

#static{

    /* 1. static : 정적인
    - position 의 기본 값
    - 위치속성이 비활성화
    */

    background-color: red;
    top: 50px;
    left: 30px;
}

#relative{

    /* 2. relative : 상대적인
    기준 : 원래 있던 위치부터 이동 */
    background-color: blue;
    position: relative;
    top: 50px;
    left: 30px;
}

#absolute{
    background: green;
    /* 3. absolute : 절대적인
        - 위치속성 활성화
        - 기준 : position 속성이 static이 아닌 부모
                부모가 static 이거나, 부모요소가 없다면 body태그를
                본인의 부모로 삼음
        */
    position: absolute;
    top: 50px;
    left: 30px;
}

#parents{
    position: relative;
}

#fixed{
    /* fixed: 고정적인 
    - 위치속성 활성화
    - 부모 무시, 스크롤 무시, 화면에 고정
    - body태그를 기준으로 위치속성 활성화
    */
    background-color: yellow;
    position: fixed;
    bottom: 0px;
    right: 0px;
}
