Programming/HTML/CSS
div, css 중앙 정렬
왕계란
2008. 8. 27. 11:58
<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>
#test {
border:1px solid #000;
top:50%;
left:50%;
margin:-50px 0 0 -100px;
width:200px;
height:100px;
}
</style>
<div id="test">test</div>
알아서 하셍.