计算机网络/计算机科学与应用/系统/运维/开发

position实现盒子居中

 .main{
        height:500px;
        background: #555;
        position: relative;
 }
 .item{
        width:100px;
        height:100px;
        background: #ff5;
        text-align: center;
        position: absolute;
        top:50%;
        left:50%;
        margin-left: -50px;
        margin-top: -50px;
 }


 <div class="main">
    <div class="item"></div>
 </div>


position

照顾好自己,如果尚有余力,记得保护美好的东西,不畏不惧赤诚善良。

评论

^