-webkit-line-clamp: 2
and related properties in Page Settings, then assign the class to the paragraph.To limit a paragraph to two lines with an ellipsis and a line height of 16px, use custom styles that apply multi-line text truncation.
Webflow UI doesn't support full multi-line ellipsis, so add custom CSS in the Page Settings → Custom Code > Before
:
Paste this custom rule, targeting the paragraph via a class, e.g., limit-text
:
```css
```
limit-text
(or whatever you used in the CSS).To create a two-line text with an ellipsis and line height of 16px, define the line height and max-height in Webflow, then use custom CSS with -webkit-line-clamp: 2
behavior for truncation. Assign this style to your paragraph via a class for consistent control.