Overflow
by AltayH
HTML
<div id="parent">
<div class="child">First</div><div class="child">Second</div>
</div>
CSS
* {
font-size: 80px;
line-height: 5;
}
.child {
display: inline-block;
}
.child:first-child {
background: steelblue;
overflow: visible;
}
.child:last-child {
background: lightgrey;
overflow: auto;
}