div及table 字符串自动截断

//table 
table td{white-space:nowrap;overflow:hidden; text-overflow:ellipsis;}
table {table-layout:fixed;} 
//div
.textflow{
 display:block;
overflow:hidden;
text-overflow:ellipsis;
white-space:nowrap;   
}
原文地址:https://www.cnblogs.com/NigelShi/p/4645925.html