CSS Overflow Text Clip
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>