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

https://s3-us-west-2.amazonaws.com/secure.notion-static.com/df415b96-e5b3-4b18-877f-b17fb487181d/Untitled.png

Content is not clipped and will be rendered outside the content box if it exceeds its container size.