Up to two lines of text display

// show up to two lines of text
.text-line-2 {
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    display: -webkit-box;
}
 
 
 

 

 

Guess you like

Origin www.cnblogs.com/guangzhou11/p/11528194.html