9 lines
159 B
Plaintext
9 lines
159 B
Plaintext
// Text truncate
|
|
// Requires inline-block or block for proper styling
|
|
|
|
#text-truncate() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|