CSS

div 정가운데 위치시키기

라크젠 2010. 8. 4. 14:21

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>무제 문서</title>
</head>
<style type="text/css">
*{margin:0; padding:0;}
html, body{hegith:100%;}
.center{position:absolute; top:50%; left:50%; height: 600px; overflow: hidden; margin-top: -300px; margin-left: -400px;}
</style>
<body>
<div class="center">
<img src="../../All Users/Documents/My Pictures/그림 샘플/수련.jpg" width="800" height="600" />
</div>
</body>
</html>