```
table {
/* 列宽由表格宽度和列宽度设定 */
table-layout: fixed;
}
td {
/* 不换行 */
white-space: nowrap;
/* 超出单元格的部分隐藏 */
overflow: hidden;
/* 用省略号代替被隐藏的部分 */
text-overflow: ellipsis;
}
```
```
table {
/* 列宽由表格宽度和列宽度设定 */
table-layout: fixed;
}
td {
/* 不换行 */
white-space: nowrap;
/* 超出单元格的部分隐藏 */
overflow: hidden;
/* 用省略号代替被隐藏的部分 */
text-overflow: ellipsis;
}
```