CSS的text-overflow实现截断字符串,如果字符串超过了指定的长度,通过这段css代码可以截断字符串的显示,并自动加上省略号
.string { width: 250px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }