<div class="parent">
<div class="child"></div>
</div>
.parent {
background: black;
height: 300px;
padding: 0 30px;
position: relative;
}
.child {
background: white;
height: 200px;
width: 200px;
position: absolute;
top: 50%;
margin-top: -100px;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.