.box {
width: 100px;
height: 100px;
background: #FCC;
margin: 0 auto;
}
<div class="container">
<div class="box"></div>
</div>
.container {
text-align: center;
}
.box {
width: 100px;
height: 100px;
background: #FCC;
display: inline-block;
}
.box {
width: 100px;
height: 100px;
background: #FCC;
position: absolute;
left: 50%;
transform: translateX(-50%);
}
<div class="container">
<div class="box"></div>
</div>
.container {
display: flex;
justify-content: center;
}
.box {
width: 100px;
height: 100px;
background: #FCC;
}