Skip to content
On this page

超出文本显示省略号

css
.test {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal ;

    // 超过两行显示省略号
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}