Css 截取字符串长度
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Css 截取字符串长度相关的知识,希望对你有一定的参考价值。
.shortNameShow{ overflow:hidden; text-overflow:ellipsis; -o-text-overflow:ellipsis; white-space:nowrap; }
1.overflow:hidden;隐藏多余的内容
2.text-overflow:ellipsis;
语法
text-overflow: clip|ellipsis|string;
值 | 描述 |
---|---|
clip | 修剪文本。 |
ellipsis | 显示省略符号来代表被修剪的文本。 |
string | 使用给定的字符串来代表被修剪的文本。 |
以上是关于Css 截取字符串长度的主要内容,如果未能解决你的问题,请参考以下文章