css 单行文本省略号 多行文本省略号

xiaoxiao2021-02-28  30

1.单行文本

overflow:hidden; text-overflow:ellipsis; white-space:nowrap width:100%

2.多行文本

text-overflow: -o-ellipsis-lastline;   overflow: hidden;   text-overflow: ellipsis;   display: -webkit-box;   -webkit-line-clamp: 2;   -webkit-box-orient: vertical; display: -moz-box; -moz-line-clamp: 2; -moz-box-orient: vertical;

       

转载请注明原文地址: https://www.6miu.com/read-2628699.html

最新回复(0)