<!DOCTYPE html><style type="text/css">
* {
border: 1px solid black;
}
.container {
position: relative;
display: grid;
place-items: center;
height: 200px;
width: 200px;
}
.box {
position: absolute;
height: 100px;
width: 100px;
}
</style><div class="container"><div class="box"></div></div>