Skip to content

Instantly share code, notes, and snippets.

@pronayguha13
Created December 11, 2022 10:33
Show Gist options
  • Save pronayguha13/2adeb6fec8ce31d88130b9481bd3ebf2 to your computer and use it in GitHub Desktop.
Save pronayguha13/2adeb6fec8ce31d88130b9481bd3ebf2 to your computer and use it in GitHub Desktop.
Random useful css snippets
//css to have ellipsis on label element
.truncate-ellipsis {
overflow: hidden;
white-space: nowrap !important;
text-overflow: ellipsis !important;
display: inline-block !important;
max-width: 12ch !important;
font-weight: 500;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment