text-overflow 设置文本内容溢出时呈现的模式
/* 要让text-overflow生效.块属性必须先设置: overflow:hidden; white-space:nowrap; */
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; /* clip 裁掉溢出部分, ellipsis溢出部分用 '...' 代替 */
标签:...,文本,text,overflow,nowrap,溢出
From: https://www.cnblogs.com/unity-yancy/p/17482386.html