HTML table的td内容过长时,自动隐藏成效
HTML table的td内容过长时,自动隐藏效果
table {
table-layout: fixed;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
table {
table-layout: fixed;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}