怎么让移动端web的table超出隐藏

根据网上搜索出来的方法

table {
    table-layout: fixed;
}
td {
    width: **em;
    white-space: pre;
    overflow: hidden;
    text-overflow: ellipsis;
}

在定义td的宽度的时候完全不起作用,并且在超出隐藏后多出了很多不明所以的省略号
图片描述

阅读 4.7k
4 个回答
新手上路,请多包涵

你将td的width改成max-width试试~~

white-space: pre;

这句让你多出很多空格

text-overflow: ellipsis;

就是省略号,哪里意义不明了?
宽度失效就在td里面加个div,设置div的宽度和超出失效呗,多简单。

题主是想单行显示超出隐藏吧 改成white-space: nowrap

 table-layout: fixed;

写给td,不要省略号就不要写text-overflow: ellipsis;

推荐问题