首先设置 table:
<table width='100%' border='0' cellspacing='0' cellpadding='0' class='mytable' style='table-layout: fixed'>;
td 方式一:(自动换行)
<td colspan='3' style='word-wrap: break-word'>mail</td>
td 方式二:(省略号代替)
.mytable tr td {
/* for IE */
text-overflow: ellipsis;
/* for Firefox,mozilla */
-moz-text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
text-align: left
}