CSS Overflow Text Clip

Text overflow can clip long content.

Preview

Code

<style>
.box{
width:200px;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
border:1px solid #2563eb;
}
</style>

<div class="box">
This is a very long text that will be truncated with ellipsis.
</div>

More CSS Overflow Examples (7)