通过样式控制 td,span中隐藏超过限制的字符串

< style  type = "text/css" >
  #test{
   display:block;/*内联对象需加*/  
     width:100px;  
     word-break:keep-all;/* 不换行 */  
     white-space:nowrap;/* 不换行 */  
     overflow:hidden;/* 内容超出宽度时隐藏超出部分的内容 */  
     text-overflow:ellipsis;
  }
</ style >

你可能感兴趣的:(通过样式控制 td,span中隐藏超过限制的字符串)