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

able {
table-layout: fixed;
}


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

}


给td给默认宽度,在页面当中加入以上样式 。


你可能感兴趣的:(HTML table的td内容过长时,自动隐藏效果)