用css实现文本不换行切超出限制时显示省略号(小tips)时间:2023-03-09 07:13:37 div{ max-width: 500px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap;/*文本不换行*/ } 如上代码所示,限制文段宽度,可用width或max-width,方法简单但实用。