postcss-utilities
Version:
PostCSS plugin to add a collection of mixins, shortcuts, helpers and tools for your CSS
20 lines (18 loc) • 351 B
CSS
.multiline {
width: 500px;
font-size: 1.2em;
display: block;
display: -webkit-box;
height: 3em;
line-height: 1;
-webkit-line-clamp: 3;
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
}
.circle {
border-radius: 50%;
width: 200px;
height: 200px;
background-color: red;
}