css 绝对定位居中

<body style="overflow:hidden;margin:0;left:0;">
    <div style="position: absolute; width:100%;height:100%;border:1px solid blue;">
        <div style="position: relative; border: solid red 1px;width:230px;height:100px;top:50%;left:50%;margin:-50px 0 0 -115px;">
            content
        </div>
    </div>
</body>

  

你可能感兴趣的:(css)