1. 程式人生 > >用CSS使div在整個頁面中(水平、垂直)都居中——萬能的

用CSS使div在整個頁面中(水平、垂直)都居中——萬能的

<style>
    html,body{
        height: 100%;
    }
    body{
        display: flex;
        align-items: center;
        align-content: center;
    }
    div {
        margin:0 auto;
    }
</style>