<div>
<div id="parent">
<div id="child"></div>
</div>
</div>
* {
margin: 0;
padding: 0;
}
#parent {
width: 200px;
height: 200px;
margin-top: 20px;
background-color: pink;
overflow: hidden;
}
#child {
width: 100px;
height: 100px;
margin-top: 30px;
background-color: skyblue;
}
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.