/* 单行溢出 */
.one-txt {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* 两行溢出 */
.more-txt {
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
}
声明:
本文采用
BY-NC-SA
协议进行授权,如无注明均为原创,转载请注明转自
一颗大萝北
本文地址: css单行/两行溢出隐藏
本文地址: css单行/两行溢出隐藏