HTML
<div>
Even if this div is too small to display its contents, the content is not clipped.
</div>
CSS
div {
width:50px;
height:50px;
overflow:visible;
}
Result
Content is not clipped and will be rendered outside the content box if it exceeds its container size.