1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
<!DOCTYPE html>
<html lang="ko">
<head>
    <meta charset="utf-8">
    <style>
        #wrapper { 
            width:300px; 
            height:300px; 
            background:blue;
             
            display:table-cell;     /* 해당요소에 display : table-cell; 하면 테이블의 셀처럼 배치한다.*/
            text-align:center; 
            vertical-align:middle;
        }
        #box { 
            width:50px; 
            height:50px; 
            background:red;
            display:inline-block;
        }            
    </style>
</head>
<body>
    <div id="wrapper">
        <div id="box"></div>
    </div>
</body>
</html>


반응형
Posted by 힘없는염소