用css实现文本不换行切超出限制时显示省略号(小tips)

div{
    max-width: 500px; 
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;/*文本不换行*/
}

如上代码所示,限制文段宽度,可用width或max-width,方法简单但实用。

posted @ 2017-10-16 11:44  mousea  阅读(3503)  评论(0编辑  收藏  举报