微信小程序 单行、多行 超出宽度... 处理

2022-07-23  本文已影响0人  朱允见

1. 文本... 处理

/*多行文本省略号*/
.box{
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    word-wrap: break-word;
    white-space: normal !important;
    -webkit-line-clamp: 3;  /*  行数*/
    -webkit-box-orient: vertical;
}
/*单行文本省略号*/
.text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis; 
}
上一篇下一篇

猜你喜欢

热点阅读