mirror of
https://github.com/twbs/bootstrap.git
synced 2024-12-02 14:24:19 +01:00
10 lines
163 B
Plaintext
10 lines
163 B
Plaintext
// Text overflow
|
|
// Requires inline-block or block for proper styling
|
|
|
|
.text-overflow() {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|