css實現文本塊在容器中垂直居中

效果如圖:css

css代碼:web

.textContainer {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-box-pack: center;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    -webkit-line-clamp: 2;
}

若是有圖標,須要固定定位到邊上,不能用浮動。spa

相關文章
相關標籤/搜索