DO YOU NEED A CONTENT WRITER FOR YOUR BUSINESS?

Your One-Stop Solution for All Content Needs! Click here for more!
Categories: Css3

Truncate String with Ellipsis

Share

Overflow with text is always a big issue in a website, especially in a programmatic environment. Use Ellipsis to truncate string.

We can provide a solution by adding an CSS property overflow: hidden setting to the span, but you can see that the text looked unnaturally cut off.

The way to make text overflow elegant is with ellipses.

The CSS behind creating ellipses is very simple, combining width, wrapping, overflow, and text-overflow:

span{
display:inline-block;
width:200px;
white-space: nowrap;
overflow:hidden ;
text-overflow: ellipsis;
}

Here is total example:

HTML:

<span>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus pretium metus vitae aliquet. Sed facilisis enim nibh, eget maximus erat dignissim sit amet. In hac habitasse platea dictumst. In nec nunc eu diam pulvinar lacinia nec et arcu. Sed ut enim nunc. Nam lobortis nibh tincidunt nunc scelerisque venenatis</span>

CSS:

span{
display:inline-block;
width:200px;
white-space: nowrap;
overflow:hidden ;
text-overflow: ellipsis;
}

Result will be:

Lorem ipsum dolor sit amet,...

But Firefox doesn’t currently support text-overflow:ellipsis property. There’s one another solution for Firefox provided by Dojo Toolkit: dojox.html.ellipsis.

This resource uses an iFrame shim to create ellipsis.

dojo.require("dojox.html.ellipsis");

After requiring the JavaScript resource, place a dojoxEllipsis node within the page as below:

<span class="dojoxEllpsis">Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed cursus pretium metus vitae aliquet. Sed facilisis enim nibh, eget maximus erat dignissim sit amet. In hac habitasse platea dictumst. In nec nunc eu diam pulvinar lacinia nec et arcu. Sed ut enim nunc. Nam lobortis nibh tincidunt nunc scelerisque venenatis</span>
CSS Designer

Recent Posts

How Did The Restaurant Industry change In Post Pandemic Era?

The coronavirus outbreak has drastically changed the way we live our lives. Yes, that's absolutely…

2 days ago

A Guide To CPQ and How It Fuels Marketing and Sales

Sales and marketing teams help attract, convert, and retain customers to ensure an organization’s long-term…

1 week ago

Top Questions Asked About Invoice Financing Applications

Are you an owner of a small business who’s trying to come up with ways…

2 weeks ago

Complete Medical Guide to Blood Sugar Testing and Glucose Control

Introduction When patients bring me their lab reports, the confusion is almost always the same.…

3 weeks ago

6 Tips to Strategically Remodel Your Home

Are you excited about remodeling your house after a long time? Perhaps if you're planning…

3 weeks ago

Driving Finding Balance on and off the Mat: How Calm Awareness Supports Everyday

The practice of yoga teaches us to be present, patient and mindful of our decisions.…

3 weeks ago