文字溢出时省略号表示

单行文字省略:
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
多行文字省略:
display: -webkit-box;   
-webkit-line-clamp: 2;   //设定行数 
/* ! autoprefixer: off */    
-webkit-box-orient: vertical; 
/* autoprefixer: on */   
overflow: hidden;   
text-overflow: ellipsis;

注:请在 -webkit-box-orient: vertical; 上下添加如上注释,防止webpack打包时导致-webkit-box-orient: vertical丢失 


若控制台报警告:Second Autoprefixer control comment was ignored. Autoprefixer applies control comment to whole block, not to next rules
则将以上代码改为(改第三行)
display: -webkit-box;   
-webkit-line-clamp: 2;   //设定行数 
/* ! autoprefixer: ignore next */
-webkit-box-orient: vertical;
/* autoprefixer: on */
overflow: hidden;   
text-overflow: ellipsis;
posted @   huihuihero  阅读(223)  评论(0编辑  收藏  举报
编辑推荐:
· 基于Microsoft.Extensions.AI核心库实现RAG应用
· Linux系列:如何用heaptrack跟踪.NET程序的非托管内存泄露
· 开发者必知的日志记录最佳实践
· SQL Server 2025 AI相关能力初探
· Linux系列:如何用 C#调用 C方法造成内存泄露
阅读排行:
· 无需6万激活码!GitHub神秘组织3小时极速复刻Manus,手把手教你使用OpenManus搭建本
· Manus爆火,是硬核还是营销?
· 终于写完轮子一部分:tcp代理 了,记录一下
· 别再用vector<bool>了!Google高级工程师:这可能是STL最大的设计失误
· 单元测试从入门到精通
点击右上角即可分享
微信分享提示