uniapp文本过长省略及文本换行

// 文本过长显示省略号,一般高度固定且不是auto
.shenglue {
        width: 400rpx;
        margin-top: 15rpx;
        color: #333333;
        font-size: 0.7em;
        overflow: hidden;
        text-overflow:ellipsis;
        white-space: nowrap;
}

// 文本过长换行显示,高度不固定
.huanhang {
        display:inline-block;
        width: 100%;
        height: auto;
        font-family: Gibson;
        font-size: 15px;
        word-break: break-all;
        text-overflow: ellipsis;
        word-wrap: break-word;
        white-space: pre-wrap;
}

你可能感兴趣的:(uniapp文本过长省略及文本换行)