como centralizar uma div

50

.container { 
    width: 700px; 
    margin-left: auto;
    margin-right: auto; 
}
<style>
.container {
width: 100vw;
height: 100vh;
background: #6C7A89;
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.box {
width: 300px;
height: 300px;
background: #fff;
}
body {
margin: 0px;
}
</style>

Comments

Submit
0 Comments