目录

CSS text-overflow 属性


示例

使用文本溢出属性:

div {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
亲自试一试 »

下面有更多 "亲自试一试" 示例。


定义和用法

这个text-overflow属性指定如何向用户发出未显示的溢出内容的信号。它可以被剪裁、显示省略号 (...) 或显示自定义字符串。

文本溢出需要以下两个属性:

  • 空白:nowrap;
  • 溢出:隐藏;

展示演示❯

默认值: 夹子
遗传:
可动画: 不。阅读可动画的
版本: CSS3
JavaScript 语法: 对象.style.textOverflow="ellipsis"尝试一下

浏览器支持

表中的数字指定完全支持该属性的第一个浏览器版本。

后跟 -o- 的数字指定使用前缀的第一个版本。

Property
text-overflow 4.0 6.0 7.0 3.1 11.0
9.0 -o-


CSS 语法

text-overflow: clip|ellipsis| string|initial|inherit;

属性值

Value Description Demo
clip Default value. The text is clipped and not accessible Demo ❯
ellipsis Render an ellipsis ("...") to represent the clipped text Demo ❯
string Render the given string to represent the clipped text
initial Sets this property to its default value. Read about initial
inherit Inherits this property from its parent element. Read about inherit

更多示例

示例

具有悬停效果的文本溢出(悬停时显示整个文本):

div.a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

div.a:hover {
  overflow: visible;
}
亲自试一试 »

相关页面

CSS教程:CSS 文本效果

HTML DOM 参考:textOverflow 属性