HTML table的td内容过长时,自动隐藏效果
table {
table-layout: fixed;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
给td给默认宽度,在页面当中加入以上样式 。
table {
table-layout: fixed;
}
td {
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
}
给td给默认宽度,在页面当中加入以上样式 。