HTML table的td内容过长时,自动隐藏效果

table {
table-layout: fixed;
}


td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}

你可能感兴趣的:(html)