-webkit-line-clamp属性用于限制块容器可能包含的行数。仅当显示属性设置为“ -webkit-box”或“ -webkit-inline-box”并且“ -webkit-box-orient”属性设置为“垂直”时,此属性才有效。

用法:

-webkit-line-clamp:none | integer | initial | inherit

属性值:

none:用于指定内容不会被钳位。它是默认值。

例:

-webkit-line-clamp property

/* Clipped text for

comparison */

.content-1 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:2;

overflow:hidden;

}

.content-2 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:none;

overflow:hidden;

}

GeeksforGeeks

-webkit-line-clamp:2

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

-webkit-line-clamp:none

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

输出:

0100a087d2bddabfb7cc19ce398aa8f7.png

integer:它用于指定内容将被裁剪后的行数。此值应大于0。

例:

-webkit-line-clamp

.content-1 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:1;

overflow:hidden;

}

.content-2 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:3;

overflow:hidden;

}

GeeksforGeeks

-webkit-line-clamp:1

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

-webkit-line-clamp:3

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

输出:

3c625fbe2829bd1b68d7cb5e4532b591.png

initial:用于将属性设置为其默认值。

例:

-webkit-line-clamp

/* Clipped text for

comparison */

.content-1 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:2;

overflow:hidden;

}

.content-2 {

width:300px;

display:-webkit-box;

-webkit-box-orient:vertical;

-webkit-line-clamp:initial;

overflow:hidden;

}

GeeksforGeeks

-webkit-line-clamp:2

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

-webkit-line-clamp:initial

GeeksforGeeks is a computer

science portal with a huge

variety of well written and

explained computer science

and programming articles,

quizzes and interview questions.

输出:

0ea4f9055c30bf06b40e80f2785fb861.png

inherit:这用于从其父项继承属性。

支持的浏览器:-webkit-line-clamp属性支持的浏览器如下所示:

谷歌浏览器

火狐浏览器

苹果浏览器

Opera

Logo

权威|前沿|技术|干货|国内首个API全生命周期开发者社区

更多推荐