Flexbox實現垂直水平居中

<div class="box">
        <div style="width: 100px;height:150px;">
            解析:本題主解析:本題主解析:本題主
        </div>
    </div>
    <style type="text/css">
        .box {   
            display: flex;  
            align-items: center;  //垂直css

    -webkit-align-items: center;//兼容瀏覽器寫法
            justify-content: center; //水平web

    -webkit-justify-content: center;//兼容瀏覽器寫法
            height: 500px;
            width: 300px;
        }  
    </style>瀏覽器

相關文章
相關標籤/搜索