CSS 单(多)行文本超过部分显示省略号

1.单行显示省略号

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

2.多行显示省略号

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

你可能感兴趣的:(前端,html,css)