<style>
div {
width: 200px;
height: 200px;
}
.a { background: red; }
.b { background: green; }
.c { background: blue; }
</style>
위의 코드를 화면에 띄우면 다음과 같이 블록들이 쌓이게 된다.
display: inline-block;
을 추가해보자.<style>
div {
display: inline-block;
width: 200px;
height: 200px;
}
.a { background: red; }
.b { background: green; }
.c { background: blue; }
</style>
.b {
position: relative;
left: -20px;
top: 10px;
background: green;
}
.b
가 원래 위치에서 좌측으로 20만큼 움직인다.position:relative;
속성을 유지시킨 상태로 적용된다.