语法
text-overflow: clip|ellipsis|string;
值 | 描述 | |
---|---|---|
clip | 修剪文本。 | |
ellipsis | 显示省略符号来代表被修剪的文本。 | |
string | 使用给定的字符串来代表被修剪的文本。 |
.text {
text-align: center;
white-space:nowrap;
overflow:hidden;
text-overflow : ellipsis;
font-size:11px;
color: #6A6A6A;
}
欢迎关注我的个人技术公众号!javascript艺术