Clean up snippets
This commit is contained in:
@ -20,11 +20,9 @@ If the text is longer than one line, it will be truncated and end with an ellips
|
||||
|
||||
#### Explanation
|
||||
|
||||
1. `overflow: hidden` prevents the text from overflowing its dimensions
|
||||
(for a block, 100% width and auto height).
|
||||
1. `overflow: hidden` prevents the text from overflowing its dimensions (for a block, 100% width and auto height).
|
||||
2. `white-space: nowrap` prevents the text from exceeding one line in height.
|
||||
3. `text-overflow: ellipsis` makes it so that if the text exceeds its dimensions, it
|
||||
will end with an ellipsis.
|
||||
3. `text-overflow: ellipsis` makes it so that if the text exceeds its dimensions, it will end with an ellipsis.
|
||||
4. `width: 200px;` ensures the element has a dimension, to know when to get ellipsis
|
||||
|
||||
#### Browser support
|
||||
|
||||
Reference in New Issue
Block a user