CSS 將超出顯示寬度的內容隱藏起來

來源:互聯網
上載者:User

一般的文字截斷(適用於內聯與塊):
.text-overflow {
display:block;/*內聯對象需加*/
width:31em;/*指定寬度*/
word-break:keep-all;/* 不換行 */
white-space:nowrap;/* 強制在同一行內顯示所有文本,直到文本結束或者遭遇 br 對象。不換行 */
overflow:hidden;/* 內容超出寬度時隱藏超出部分的內容 */
text-overflow:ellipsis;/* IE 專有屬性,當對象內文本溢出時顯示省略標記(...) ;需與overflow:hidden;一起使用。*/
}

對於表格文字溢出的定義:

table{
width:30em;
table-layout:fixed;/* 只有定義了表格的布局演算法為fixed,下面td的定義才能起作用。 */
}
td{
width:100%;
word-break:keep-all;/* 不換行 */
white-space:nowrap;/* 不換行 */
overflow:hidden;/* 內容超出寬度時隱藏超出部分的內容 */
text-overflow:ellipsis;/* 當對象內文本溢出時顯示省略標記(...) ;需與overflow:hidden;一起使用。*/
}
  需要注意的是,這個東東只對單行的文字的效,如果你想把它用在多行上,也只有第一行有作用的。 這個寫法只有IE會有“...”,其它的瀏覽器文本超出指定寬度時會隱藏。
轉自:http://www.cnblogs.com/WildRam/archive/2009/09/04/1560037.html

相關文章

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.