Z-index ¼Ó¼º
¢¸    ¡á     ¢º

¿©·¯ °³ÀÇ element°¡ ¼­·Î »óÇÏ·Î °ãÄ¡°Ô ¸¸µé ¼ö ÀÖ´Â ¼Ó¼ºÀÌ´Ù.

z-index : auto | ¼ýÀÚ

Position ¼Ó¼ºÀÇ °ªÀÌ absolute³ª relativeÀÎ element¿¡ Àû¿ëµÇ¸ç, À¯ÀüµÇÁö ¾Ê´Â´Ù.
ÃʱⰪÀº autoÀÌ´Ù.
<HTML>
<HEAD>
<STYLE type="text/css">
.top {position: absolute; left: 10px; top: 50px ; z-index : 3} 
.middle {position: absolute; left: 100px; top: 70px ; z-index : 2}
.bottom {position: absolute; left: 40px; top: 90px ; z-index : 1}
</STYLE>
</HEAD>
<BODY>
<img src="top.gif" class=top>
<img src="middle.gif" class=middle>
<img src="bottom.gif" class=bottom>
</BODY>
</HTML> ÀÌ·¸°Ô ³ª¿Í¿ä
°¢°¢ÀÇ À̹ÌÁö¿¡ µû·Îµû·Î ¸µÅ©¸¦ °É ¼öµµ ÀÖ´Ù.
<A href="http://www.chosun.com" title=Á¶¼±ÀϺ¸>
<img src="top.gif" class=top border=0></A>
<A href="http://www.dongailbo.co.kr" title=µ¿¾ÆÀϺ¸>
<img src="middle.gif" class=middle border=0></A>
<A href="http://www.joongang.co.kr" title=Áß¾ÓÀϺ¸>
<img src="bottom.gif" class=bottom border=0></A>
ÀÌ·¸°Ô ³ª¿Í¿ä

¢¸    ¡á     ¢º