文字超出隐藏并显示省略号

<br />
<style type="text/css">
.css1{
    color:#6699ff;border:1px #ff8000 dashed;
    margin-bottom:20px;
     20em;/*不允许出现半汉字截断*/
}
.css2 {
    overflow: hidden; /*自动隐藏文字*/
    text-overflow: ellipsis;/*文字隐藏后添加省略号*/
    white-space: nowrap;/*强制不换行*/
    20em;/*不允许出现半汉字截断*/
    color:#6699ff;border:1px #ff8000 dashed;
}
</style>

原文地址:https://www.cnblogs.com/wangshengli520/p/7505817.html