`

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

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

相关推荐

Global site tag (gtag.js) - Google Analytics