我已经搜索了这么久但没有运气。
当元素(其他表)在其中时,如何防止html表重新调整大小我希望元素在必要时从表中溢出。
table-layout:fixed;
以上不起作用。
答案 0 :(得分:1)
我是从here得到的。
您可以使用:
td {
max-width:30px;
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
}
编辑:省略号是可选的,取决于您对文本的处理方式。