본문 바로가기

자료실

[웹표준] 정중앙정렬 시 소스

<style type="text/css">
<!--
body {
        background-image: url(imgs/back_pattern.jpg);
         height: 100%;
}
            #center {
                position: absolute;
                top: 50%;
                left: 50%;
                width: 100px;
                height: 100px;
                overflow: hidden;
                background: gray;
                margin-top: -50px;
                margin-left: -50px;
            }
-->
</style>
</head>

<body>
  <div id="center">정중앙으로 정렬하기</div>
</body>