如何让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;}

你可能感兴趣的:(css)