css 文本溢出时显示省略号

.text-ellipsis
{
       width:100px;
       height:60px;
       overflow: hidden;//隐藏滚动条
       text-overflow:ellipsis;
       white-space: nowrap;
}
.span-text
{
 display: block;
}

原文地址:https://www.cnblogs.com/lbonet/p/8074767.html