ziwei3749 / blog

已停止更新..转移至 https://segmentfault.com/u/ziwei3749

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

单行和多行文本溢出

ziwei3749 opened this issue · comments

单行和多行文本溢出

单行文本溢出

div {
    text-overflow: ellipsis;
    white-space : nowrap;
    overflow : hidden;
}

多行文本溢出

 p {
     display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
 }