Centering a `div` within a `body` Element

body {
    margin: 0 auto;
    width: 100%;
}

#root {
    width: 80%;
    height: 400px;
    background-color: #00b4d8;

    display: flex; 
    margin: 0 auto;
}

Leave a comment