1.cut-text {
2 text-overflow: ellipsis;
3 overflow: hidden;
4 white-space: nowrap;
5}
1span {
2 display: inline-block;
3 width: 180px;
4 white-space: nowrap;
5 overflow: hidden !important;
6 text-overflow: ellipsis;
7}
1#content{
2 overflow: hidden;
3 width:100px;
4 display: -webkit-box;
5 -webkit-line-clamp: 3;
6 -webkit-box-orient: vertical;
7}