美文网首页
微信小程序 单行、多行 超出宽度... 处理

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

作者: 朱允见 | 来源:发表于2022-07-23 14:46 被阅读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; 
}

相关文章

网友评论

      本文标题:微信小程序 单行、多行 超出宽度... 处理

      本文链接:https://www.haomeiwen.com/subject/fgdbirtx.html