利用css解決table文字溢出控制td顯示字數方法

來源:互聯網
上載者:User
很多的新手朋友們會在做開發的過程中,總會遇到或多或少的問題,之前看到有人問怎麼讓多餘的文字隱藏顯示並使用...表示,今天呢,就給大家解決這個問題,直接上代碼,代碼如下

table{      width:100px;      table-layout:fixed;/* 只有定義了表格的布局演算法為fixed,下面td的定義才能起作用。 */  }   td{       width:100%;       word-break:keep-all;/* 不換行 */       white-space:nowrap;/* 不換行 */          overflow:hidden;/* 內容超出寬度時隱藏超出部分的內容 */           text-overflow:ellipsis;/* 當對象內文本溢出時顯示省略標記(...) ;       需與overflow:hidden;一起使用*/  }
相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.