Limit number of lines

This snippet resizes an element to fit a given number of lines.

Even though it has the webkit prefix, it should work in all modern browsers.

.line-clamp {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
}

Credits to Josh Comeau for teaching me this code.