ie 居中方案

laremehpe發表於2024-03-18
    <style>
        #root{ /*父元素*/
            width: 500px;
            height: 500px;
            display: table;
        }

        #root .no1{ /*子元素*/
            display: table-cell;
            vertical-align: middle; /*上下居中*/
            text-align: center; /*左右居中*/
        }
    </style>

    <div id="root">
        <div class="no1">1</div>
    </div>

相關文章