CSS text-overflow Property

You are Here:

CSS text-overflow Property

CSS text-overflow property sets how hidden overflow content is signaled to users.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 2px solid black; white-space: nowrap; overflow: hidden; padding: 2px; width: 50px; } #point{ text-overflow: clip; } #point1{ text-overflow: ellipsis; } </style> </head> <body> <h1>CSS text-overflow Property</h1> <h2>text-overflow: clip;</h2> <div id="point">This is a sentence.</div> <h2>text-overflow: ellipsis;</h2> <div id="point1">This is a sentence.</div> </body> </html>

Syntax

Using CSS

element{ text-overflow: ellipsis; }

Using Javascript

object.style.textOverflow="ellipsis";

Animatable

No, text-overflow property is not animatable. CSS Animatable Properties Reference.

Default Value

Default value for CSS text-overflow property is clip.

Property Value

The following table provides a list of values for CSS text-overflow property.

ValueExplanation
clipSpecifies that the text is clipped and not accessible.
ellipsisSpecifies that the ellipsis (...) is displayed inside the content area, decreasing the amount of text displayed.

Using JavaScript

In the following example, we will demonstrate how to change the CSS text-overflow property of an element using JavaScript.

Example

HTML Online Editor
<!DOCTYPE html> <html lang="en-US"> <head> <style> div{ border: 2px solid black; white-space: nowrap; overflow: hidden; padding: 2px; margin-bottom: 10px; width: 50px; } </style> </head> <body> <h1>CSS text-overflow Property</h1> <div>This is a sentence.</div> <button onclick="myFunction()">Click Me</button> <script> var x = document.getElementsByTagName("div")[0]; function myFunction(){ x.style.textOverflow = "ellipsis"; } </script> </body> </html>

Reminder

Hi Developers, we almost covered 98.7% of CSS Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in CSS.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author