제목 : 웹브라우저에 항상 가운데(가로, 세로)오도록 레이아웃 설정
글번호:
|
|
251
|
작성자:
|
|
레드플러스
|
작성일:
|
|
2009/07/15 오후 6:57:00
|
조회수:
|
|
5613
|
<html>
<head>
<title></title>
<style type="text/css">
#midLayout
{
text-align: center;
position: absolute;
top: 50%;
width: 100%;
height: 200px;
margin-top: -100px;
}
</style>
</head>
<body>
<div id="midLayout">
<table border="1" width="400" height="200" style="text-align: center;">
<tr>
<td align="center">
로그인 박스 들어오는 곳...
</td>
</tr>
</table>
</div>
</body>
</html>