table的table-layout
2016-08-30 本文已影响15人
一沭丶
→原文在这←
下面是用法↓
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设置宽度了