9 lines
130 B
SCSS
9 lines
130 B
SCSS
/* 单行文本溢出省略 */
|
|
|
|
@mixin text-overflow() {
|
|
overflow: hidden;
|
|
white-space: nowrap;
|
|
|
|
text-overflow: ellipsis;
|
|
}
|