http://tjkdesign.com/articles/z-index/teach_yourself_how_elements_stack.asp
굳굳굳굳굳굳!!
z-index 를 알고 싶으면 주저말고 클릭!
(먼저 position에 대해 이해하신 후 보세요)
#boxes {
position: absolute;
left: 20px;
margin-top: 90px;
}
<div id="A">
A
<div id="a">a</div>
</div>
<div id="B">
B
<div id="b">b</div>
</div>
<div id="C">
C
<div id="c">c</div>
</div>
#A,#B,#C {
height: 14em;
width: 15em;
margin-top: -80px
}
#a,#b,#c {
height: 6em;
width: 11em
margin: 1em auto;
}
Posted by mkyoon
