当前位置: 代码迷 >> Web前端 >> 怎么让table的td随内容增加变宽,而不是换行
  详细解决方案

怎么让table的td随内容增加变宽,而不是换行

热度:101   发布时间:2013-09-06 10:17:17.0
如何让table的td随内容增加变宽,而不是换行
[size=xx-small][color=olive][/color][/size]
1,
  有时候table里的td随内容增加而导致内容换行,只要加上一下css
td {text-overflow:ellipsis;white-space:nowrap;}
这样会使td变宽,table当然也变宽了
2,
   要想让table不变宽,也不换行,就只能
td{overflow:hidden;}
  相关解决方案