PROGRAMING/HTML

[Html] Div 가운데 정렬

donghunl 2011. 4. 27. 03:16
반응형

 
<!-- 1. magin:0 auto;-->
<style type="text/css">
#DivCenter {margin:0 auto; width:200px; height:200px;}
</style>
 
<div id="DivCenter">Div 가운데 정렬</div>

<!-- 2. margin-right:auto; margin-left:auto; -->
<style type="text/css">
#DivCenter {margin-right:auto; margin-left:auto; width:200px;}
</style>
 
<div id="BoxCenter">Div 가운데 정렬</div>
반응형