1. 程式人生 > >垂直水平居中 多種實現

垂直水平居中 多種實現

height wid position light 垂直 idt 多種實現 一半 absolute

1.postiton 元素已知寬度

 <style>
        /* 父相對 子絕對 子上下 margin l t -一半PX */
#box{
 background-color: lightblue;width: 300px;height:300px;
 position: relative;
         }
#content{
 position: absolute;background-color: tomato;
 height: 100px;width: 100px;
 left: 50%;top: 50%;margin: -50px 0 0 -50px;
         }
    </
style> </head> <body> <div id="box"> <div id="content"> </div> </div> </body>

垂直水平居中 多種實現