-webkit-line-clamp - CSS: Cascading Style Sheets 编辑
The -webkit-line-clamp
CSS property allows limiting of the contents of a block container to the specified number of lines.
It only works in combination with the display
property set to -webkit-box
or -webkit-inline-box
and the -webkit-box-orient
property set to vertical
.
In most cases you will also want to set overflow
to hidden
, otherwise the contents won't be clipped but an ellipsis will still be shown after the specified number of lines.
When applied to anchor elements, the truncating can happen in the middle of the text, not necessarily at the end.
Note: This property was originally implemented in WebKit and has some issues. It got standardized for legacy support. The CSS Overflow Module Level 3 specification also defines a line-clamp
property, which is meant to replace this property and avoid its issues.
Syntax
/* Keyword value */
-webkit-line-clamp: none;
/* <integer> values */
-webkit-line-clamp: 3;
-webkit-line-clamp: 10;
/* Global values */
-webkit-line-clamp: inherit;
-webkit-line-clamp: initial;
-webkit-line-clamp: unset;
none
- This value specifies that the content wonʼt be clamped.
<integer>
- This value specifies the number of lines after which the content will be clamped. It must be greater than 0.
Formal definition
Initial value | none |
---|---|
Applies to | all elements |
Inherited | no |
Computed value | as specified |
Animation type | by computed value type |
Formal syntax
none | <integer>
Examples
Truncating a paragraph
HTML
<p>
In this example the <code>-webkit-line-clamp</code> property is set to <code>3</code>, which means the text is clamped after three lines.
An ellipsis will be shown at the point where the text is clamped.
</p>
CSS
p {
width: 300px;
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 3;
overflow: hidden;
}
Result
Specifications
Specification | Status | Comment |
---|---|---|
CSS Overflow Module Level 3 The definition of '-webkit-line-clamp' in that specification. | Working Draft | Initial definition |
Browser compatibility
BCD tables only load in the browser
See also
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论