table换行解决办法:

1
2
3
4
5
6
7
8
9
10
11
table {
width:100px;
table-layout:fixed;
}
td {
width:100%;
word-break:keep-all;
white-space:nowrap;
overflow:hidden;
text-overflow:ellipsis;
}