CSS实现多行文本溢出自动省略
时间:2021-08-08 23:05:24
收藏:0
阅读:29
多行文本溢出自动省略
.course-name {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
white-space: normal !important;
word-wrap: break-word;
}
效果

原文:https://www.cnblogs.com/Peter2014/p/15115906.html
评论(0)