<div class="father">
<div class="son"></div>
</div>
.father {
width: 200px;
height: 200px;
border: 1px solid #0a3b98;
background: skyblue;
display: grid;
justify-content: center;
align-items: center;
}
.son {
width: 100px;
height: 100px;
background: pink;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.