Skip to content

Instantly share code, notes, and snippets.

@Noveller
Forked from elky/truncate.css
Created May 1, 2023 11:48
Show Gist options
  • Save Noveller/d5f81849aef5d1297f2a444d979d53c7 to your computer and use it in GitHub Desktop.
Save Noveller/d5f81849aef5d1297f2a444d979d53c7 to your computer and use it in GitHub Desktop.
text-overflow ellipsis with 100% width
/*
Demo: https://jsfiddle.net/elky/f6khaf2t/
<div class="element">
<div class="truncate">
Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt
ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco
laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in
voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat
non proident, sunt in culpa qui officia deserunt mollit anim id est laborum.
</div>
</div>
*/
.element {
display: table;
table-layout: fixed;
width: 100%;
}
.truncate {
display: table-cell;
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment