博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Css让文字自适应Table宽度[转]
阅读量:5322 次
发布时间:2019-06-14

本文共 507 字,大约阅读时间需要 1 分钟。

.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

个人博客地址:

转载于:https://www.cnblogs.com/whoyou/p/5175397.html

你可能感兴趣的文章
洛谷 CF798C Mike and gcd problem
查看>>
洛谷 P2672 推销员
查看>>
洛谷 P1631 序列合并
查看>>
洛谷 P5057 [CQOI2006]简单题(树状数组)
查看>>
19年SD夏令营游记
查看>>
洛谷 P1886 滑动窗口(单调队列)
查看>>
洛谷 P1241 括号序列(栈)
查看>>
递归练习
查看>>
洛谷 P1168 中位数(优先队列)
查看>>
洛谷 P1339 [USACO09OCT]热浪Heat Wave(最短路)
查看>>
HDU 1372 Knight Moves(bfs)
查看>>
POJ 3984 迷宫问题(bfs)
查看>>
HDU 1035 Robot Motion(dfs + 模拟)
查看>>
POJ 1274 The Perfect Stall(二分图 && 匈牙利 && 最小点覆盖)
查看>>
HDU 1312 Red and Black(经典DFS)
查看>>
POJ 1064 Cable master(二分答案)
查看>>
POJ 1061 青蛙的约会(exgcd)
查看>>
ZOJ 1002 Fire Net(dfs)
查看>>
HDU 1016 素数环(dfs + 回溯)
查看>>
POJ 2142 The Balance(exgcd)
查看>>