<div class="father">
<div class="son"></div>
</div>
.father {
width: 200px;
height: 200px;
border: 1px solid #0a3b98;
display: table-cell;
text-align: center;
vertical-align: middle;
background: skyblue;
}
.son {
width: 100px;
height: 100px;
display: inline-block;
background: pink;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.