Created
December 11, 2022 10:33
-
-
Save pronayguha13/2adeb6fec8ce31d88130b9481bd3ebf2 to your computer and use it in GitHub Desktop.
Random useful css snippets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//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