当前位置:网站首页>Only two lines are displayed, and the excess part is displayed with Ellipsis

Only two lines are displayed, and the excess part is displayed with Ellipsis

2022-06-24 07:28:00 I don't drink milk tea or I'm fat

Some methods on the Internet have great effects , But this can be done

.line {

word-break: break-all;

text-overflow: ellipsis;/* Excess ellipsis */

display: -webkit-box;/* Display the object as an elastic expansion box model . */

-webkit-box-orient: vertical;/* Arrange children vertically from top to bottom ( Set the sub element arrangement of the expansion box ) */

-webkit-line-clamp: 2;/* Number of lines displayed */

overflow: hidden; /* To hide beyond */

}

原网站

版权声明
本文为[I don't drink milk tea or I'm fat]所创,转载请带上原文链接,感谢
https://yzsam.com/2022/175/202206240202206550.html