省略号 对单行 多行的css

.twoline{

display: -webkit-box !important;

width:99px;

overflow:hidden;

text-overflow: ellipsis;

word-break: break-all;

-webkit-box-orient:vertical;

-webkit-line-clamp:4;

}

.oneline{

text-overflow: ellipsis;

overflow:hidden;

white-space: nowrap;

width:99px;

}