web-apps/vendor/bootstrap/less/mixins/_text-truncate.less
2020-05-21 19:29:40 +03:00

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;
}