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

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

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

上一篇:Linux Cluster 基础之LVS调度算法与集群类型


下一篇:LVS的十种调度算法