Skip to content

Instantly share code, notes, and snippets.

@Malkeet12
Malkeet12 / single-line.scss
Created March 7, 2020 18:34
create single line ellipsis using css
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
width: 300px;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;