css 文本显示,溢出省略号表示


文本文本文本文本文本文本文本文本文本文本文本文本
// 单行 .box { width: 100px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; } // 单行&多行,此方案使用webkit 私有属性,不适用于IE .box { width: 100px; text-overflow: ellipsis; overflow: hidden; display: -webkit-box; -webkit-line-clamp: n; // n为显示的行数 -webkit-box-orient :vertical; }

你可能感兴趣的:(css 文本显示,溢出省略号表示)