Skip to content

Instantly share code, notes, and snippets.

@jiverson
Created December 20, 2018 15:41
Show Gist options
  • Save jiverson/8efd01415676ddaff2c2624d258fddcc to your computer and use it in GitHub Desktop.
Save jiverson/8efd01415676ddaff2c2624d258fddcc to your computer and use it in GitHub Desktop.
Line clamping
.line-clamp {
display: -webkit-box;
overflow: hidden;
text-overflow: ellipsis;
white-space: normal;
-webkit-line-clamp: 2;
/* autoprefixer: ignore next */
-webkit-box-orient: vertical;
}
@jiverson
Copy link
Author

jiverson commented Dec 20, 2018

Line clamping for supported browsers

https://css-tricks.com/almanac/properties/l/line-clamp/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment