<style>
.father {
width: 500px;
height: 500px;
background-color: yellow;
position: relative;
}
.child {
width: 200px;
height: 200px;
background-color: aqua;
position: absolute;
top: 50%;
left: 50%;
margin-top: -100px;
margin-left: -100px;
}
.father {
width: 500px;
height: 500px;
background-color: yellow;
position: relative;
}
.child {
width: 200px;
height: 200px;
background-color: aqua;
position: absolute;
margin: auto;
top: 0;
left: 0;
right: 0;
bottom: 0;
}
.father {
width: 500px;
height: 500px;
background-color: yellow;
display: table-cell;
vertical-align: middle;
text-align: center;
}
.child {
width: 200px;
height: 200px;
background-color: aqua;
display: inline-block;
}
.father {
width: 500px;
height: 500px;
background-color: yellow;
display: flex;
justify-content: center;
align-items: center;
}
.child {
width: 200px;
height: 200px;
background-color: aqua;
}
.father {
width: 500px;
height: 500px;
background-color: yellow;
position: relative;
}
.child {
width: 200px;
height: 200px;
background-color: aqua;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
</style>