Vertically And Horizonatally center main wrap div

Posted by Hello you all men on Stack Overflow See other posts from Stack Overflow or by Hello you all men
Published on 2010-05-12T21:33:38Z Indexed on 2010/05/12 21:44 UTC
Read the original article Hit count: 148

Filed under:
|
|
|

Now i try

<html>
<head>

        <title>?????????????????</title>
        <style type="text/css">   
    body
    {

            margin-left: auto;
            margin-right:auto;
    }

    #wrap
    {
            background: black;
            margin-left: auto;
            margin-right:auto;
            height:450px;
            width:450px;
            position:absolute;
            top:50%;
            right:50%;
            left:50%;
            margin-top:-225px;
         }
    </style>
</head>
<body>
        <div id="wrap">
                Hello
        </div>
</body>
</html>

?????

© Stack Overflow or respective owner

Related posts about css

Related posts about php