<Html xmlns = "http://www.111cn.net/1999/xhtml">
<Head>
<Title> css div width is automatically hidden and ellipsis is displayed </title>
<Meta http-equiv = "content-type" content = "text/html; charset = gb2312">
<! -- Add the following code between <Style type = "text/css">
# Abc {
Display: block;/* Add inline objects */
Width: 200px;
Word-break: keep-all;/* do not wrap */
White-space: nowrap;/* do not wrap */
Overflow: hidden;/* Hide the content beyond the width of the content */
Text-overflow: ellips tutorial is;/* indicates the omitted mark (...) when the text in the object overflows. It must be used with overflow: hidden */
}
# Cde {
Width: 200px;/* the width must be set */
Word-break: keep-all;/* do not wrap */
White-space: nowrap;/* do not wrap */
Overflow: hidden;/* Hide the content beyond the width of the content */
Text-overflow: ellipsis ;/
}
</Style>
</Head>
<Body>
<Div id = "abc">
Fdsafdsaklfdjsaklf; djakl; fdjsakf; djsakfldajfklda; fjdsakl
</Div>
<Div id = "cde">
The first website in China is www.111cn.net, which provides the latest webpage creation tutorial, webpage design tutorial, and webpage special effect tutorial. It provides webpage material template and webpage video learning for personal websites.
</Div>
</Body>
</Html>