With CSS, use “…” for overflowed block of multi-lines

后端 未结 16 2542
情话喂你
情话喂你 2020-11-22 07:15

with

overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;

\"...\" will be shown in the end of the line if overflowed. However, t

16条回答
  •  孤城傲影
    2020-11-22 07:26

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical; 
    

    see more click here

提交回复
热议问题