html文字显示为单行,双行

文本显示为单行,超过部分隐藏并使用省略号,实例:

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

使用 display:-webkit-box; 让文本显示为多行(只有-webkit内核才有作用),实例:

overflow:hidden;
text-overflow:ellipsis;
display:-webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient:vertical;
width:100px;

猜你喜欢

转载自blog.csdn.net/yijiupingfan0914/article/details/80521211