天天看点

如何让div中的文字只显示一行,多余的文字隐藏并加上省略号

 <html xmlns="http://www.w3.org/1999/xhtml">

<head>

    <title></title>

    <style>

    div{

white-space: nowrap;

text-overflow:ellipsis;

text-overflow: ellipsis;

overflow:hidden;

}

    </style>

</head>

<body>

<div style=" width:100px; border:solid 1px red;">

文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本文本

</div>

</body>

</html>