my / scss /bootstrap /mixins /_text-truncate.scss
iamironman4279's picture
Upload 183 files
d5469bf verified
raw
history blame contribute delete
168 Bytes
// Text truncate
// Requires inline-block or block for proper styling
@mixin text-truncate() {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}