NOTICE

div, css 중앙 정렬

Date : 2008. 8. 27. 11:58 Category : Programming/HTML/CSS
<style>
#test {
   border:1px solid #000;
   top:50%;
   left:50%;
   margin:-50px 0 0 -100px;
   width:200px;
   height:100px;
   }
</style>
<div id="test">test</div>

알아서 하셍.