css+div解決文字溢出控制顯示字數

1、通常的文字截斷(適用於內聯與塊):css

div css xhtml xml Example Source Code Example Source Code [www.mb5u.com]html

.text-overflow {
display:block;/*內聯對象需加*/
width:31em;
word-break:keep-all;/* 不換行 */
white-space:nowrap;/* 不換行 */
overflow:hidden;/* 內容超出寬度時隱藏超出部分的內容 */
text-overflow:ellipsis;/* 當對象內文本溢出時顯示省略標記(...) ;需與overflow:hidden;一塊兒使用。*/
}
 
相關文章
相關標籤/搜索