1. 程式人生 > >css多行超出隱藏“...”顯示

css多行超出隱藏“...”顯示

{
    height: 44px;
    overflow: hidden;
    text-overflow: -o-ellipsis-lastline;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;//幾行
    -webkit-box-orient: vertical;
}