uniapp文本过长省略或文本过长换行显示

文本过长显示省略号,一般高度固定且不是auto

.plan_list_text{
        width: 400rpx;
        margin-top: 15rpx;
        color: #b0b0b0;
        font-size: 0.7em;
        overflow: hidden;
        text-overflow:ellipsis;
        white-space: nowrap;
}

文本过长换行显示,高度不固定

.plan_list_text {
        display:inline-block;
        width: 100%;
        height: auto;
        font-family: Gibson;
        font-size: 32rpx;
        word-break: break-all;
        text-overflow: ellipsis;
        word-wrap: break-word;
        white-space: pre-wrap;
}
posted @ 2022-07-01 09:43  又一岁荣枯  阅读(1886)  评论(0编辑  收藏  举报