Mixin - Truncate text and add ellipsis

/* USAGE: .sample { @include font-size(14px) } */ @mixin truncate($overflow: ellipsis){ overflow: hidden; text-overflow: $overflow; // values are: clip, ellipsis, or a string white-space: nowrap; }

Be the first to comment

You can use [html][/html], [css][/css], [php][/php] and more to embed the code. Urls are automatically hyperlinked. Line breaks and paragraphs are automatically generated.