css内容:
table{ table-layout: fixed; //fixed是table-layout的默认值是auto;(关键) }
td{ white-space: nowrap; //单元格内容多少都保证不会换行 overflow: hidden; //隐藏超出单元格的部分 text-overflow: ellipsis; //将被隐藏的部分用省略号表示 }
css内容:
table{ table-layout: fixed; //fixed是table-layout的默认值是auto;(关键) }
td{ white-space: nowrap; //单元格内容多少都保证不会换行 overflow: hidden; //隐藏超出单元格的部分 text-overflow: ellipsis; //将被隐藏的部分用省略号表示 }
转载于:https://my.oschina.net/SimTao/blog/1558195