CSS3 text-overflow 字符串截取

截取1行

.text-cut
{
text-overflow:ellipsis;
overflow: hidden;
white-space: nowrap;
}

截取2行

.text-cut-2
{
    display: -webkit-box;
    overflow: hidden;
 
    white-space: normal !important;
    text-overflow: ellipsis;
    word-wrap: break-word;
 
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}


你可能感兴趣的:(CSS3 text-overflow 字符串截取)