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