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

table {
table-layout: fixed;
}


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

猜你喜欢

转载自847104446.iteye.com/blog/2298430