Css让文字自适应Table宽度[转]

.ctl{

table-layout:fixed

}

.ctl td{text-overflow:ellipsis;overflow:hidden;white-space: nowrap;padding:2px}

关键样式:

table-layout:fixed 固定布局的算法,则表格被呈递的默认宽度为 100% (For IE,Mozilla)

text-overflow:ellipsis 当对象内文本溢出时显示省略标记(...) (For IE)

overflow:hidden 不显示超过对象尺寸的内容 (For IE,Mozilla) 

white-space: nowrap 强制在同一行内显示所有文本,直到文本结束或者遭遇 br 对象 (For IE,Mozilla)

原文链接http://www.feitec.com/showart.asp?id=825

另一篇有价值的参考http://blog.csdn.net/ldl22847/article/details/7247702

个人博客地址:http://www.iwooto.com

原文地址:https://www.cnblogs.com/whoyou/p/5175397.html