postion의 종류
position: static; //정적 위치
position: relative; //상대적 위치
//top, right, bottom, left 가 있을때 적용됨
position: absolute; //절대적 위치
position: fixed; //고정적 위치
.relative { position: relative; } .top-20 { top: -20px; left: 30px; }
.right-0 { right: 0; bottom: 0; }
절대적 위치에서는 부모기준으로 right가 붙습니다.
.coupon { position: fixed; right: 0; // 브라우저 옆에 붙어져있음 bottom: 0; background-color: red; color: white; font-size: 20px; }