overflow: visible

suggest change

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.

Feedback about page:

Feedback:
Optional: your email if you want me to get back to you:



Table Of Contents