------------------------基于DIV----------------------------------------
div {
text-overflow: ellipsis;
overflow:hidden;
}
------------------------基于TABLE----------------------------------------
<table border="1" style="table-layout: fixed;">
<tr>
<td style="width:100px;text-overflow: ellipsis;overflow:hidden;">单元格内自动处理</td>
</tr>
</table>