css文本溢出

單行溢出

    overflow: hidden;
    text-overflow:ellipsis;
    white-space: nowrap; 

多行溢出(含解決英文,漢字換行問題)

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    word-wrap:break-word;
    word-break: break-all;
    white-space: normal; 
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章