您的当前位置:首页正文

微信小程序 - 文字超限断尾显示省略号

2024-11-29 来源:个人技术集锦
.s-item text {
    display: -webkit-box;
    word-break: break-all;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 32rpx;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp:2;
}
显示全文