Code: Overflow:hidden; White-space:nowrap; Text-overflow:ellipsis;
Key code: text-overflow:ellipsis;
Explanation: The simple understanding is that I want to limit the text to one line (white-space:nowrap;), that the line is bound (width), and that the part of your overflow is to be hidden (overflow:hidden;), and then an ellipsis ( text-overflow:ellipsis).
Text-ellipsis is a special style, and the explanation is this: the Text-overflow property is only annotations, and if the text overflows, the ellipsis is displayed. No other style attribute definitions are available. The effect of an ellipsis on overflow must also be defined: Force the text to appear on one line (white-space:nowrap) and overflow content as hidden (Overflow:hidden), only in order to achieve the effect of overflow text display ellipsis.
Code:
<!DOCTYPE HTML><HTMLxmlns= "http://www.w3.org/1999/xhtml"><Head><Metahttp-equiv= "Content-type"content= "text/html; charset=utf-8"/> <title>CSS out-of-section display ellipsis</title></Head><Body> <DivID= "Div1"style= "width:100px; background: #ccc; overflow:hidden; white-space:nowrap; Text-overflow:ellipsis; ">Ellipses, ellipses, ellipses, ah, no.</Div>The emphasis style is text-overflow:ellipsis;<BR/>Text-ellipsis is a special style, and the explanation is this: the Text-overflow property is only annotations, and if the text overflows, the ellipsis is displayed. No other style attribute definitions are available. The effect of an ellipsis on overflow must also be defined: Force the text to appear on one line (white-space:nowrap) and overflow content as hidden (Overflow:hidden), only in order to achieve the effect of overflow text display ellipsis. The simple understanding is that I want to limit the text to a single line (white-space:nowrap;), that the line is bound (width), and that the portion of your overflow is to be hidden (overflow:hidden;), and then the ellipsis is present (Text-overflow : ellipsis). </Body></HTML>
CSS out-of-section display ellipsis