table的table-layout

→原文在这←
下面是用法↓
1、

table { table-layout: fixed;}

一般配合使用

table{
   table-layout: fixed; width: 100%; white-space: nowrap;
}
table td { 
  white-space: nowrap;
  overflow: hidden; 
  text-overflow: ellipsis;
}

然后可以愉快的给td设置宽度了

你可能感兴趣的:(table的table-layout)