CSS TEXT-OVERFLOW - CSS3 Examples

CSS TEXT-OVERFLOW

Written by jon on 11:27 PM
Some content in an element may fall outside the element’s rendering box for a number of reasons (negative margins, absolute positioning, content exceeding the width/height set for an element, etc.) In cases where this occurs, the ‘overflow’ (set to “hidden” or “scroll” for this property to have an effect), and ‘clip’ properties define what content will be visible.
If text is too long for the overflow/clipping area and the content is to be visually clipped, this property allows the clipped content to be visually represented by the string “…” (called an “ellipsis”) in the non-clipped area.
This property only applies to text overflow content in the flow of text (horizontal for western text.) To explicitly force an overflow situation, content must be in either a NOBR element or an element with the ‘white-space’ property set to “nowrap” - otherwise, only a natural non-breaking word existing at the clipping boundary will induce this property to have an ellipsis effect (if the property is thus set.)
The clipped content can still be selected by selecting the ellipsis. When selected, the ellipsis will disappear and be visually replaced by as much of the the text content as is possible to display in the clipping area.

Example
div { position: absolute; left: 20px; top: 50px; width: 120px; height: 50px; border: thin solid black; overflow: hidden; text-overflow: ellipsis }

<div style=”position: absolute; left: 20px; top: 50px;
width: 120px; height: 50px; border: thin solid black;
overflow: hidden; text-overflow: ellipsis”>

<nobr>This is a NOBR section</nobr>

</div>

Possible Values
Value Description
clip Clips the viewable content to the area defined by the rendering box, the ‘overflow', and ‘clip' property values.
ellipsis If text content will overflow, display the string “…” in the visibly-rendered region for content outside the visible area.

Related Posts by Categories



Widget by John | Interviewghost
  1. 1 comments: Responses to “ CSS TEXT-OVERFLOW ”

  2. By trustno1 on January 29, 2019 at 1:21 AM

    css overflow language examples
    overflow-x auto overflow-x scroll

RECENT COMMENTS

SUBSCRIBE TO CSS3 EXAMPLES

 Subscribe to css3 Examples via RSS
Or, subscribe via email:
Find CSS3 Examples Entries :