目录

style textOverflow 属性

示例

更改 textOverflow 属性:

document.getElementById("myDIV").style.textOverflow = "ellipsis";
亲自试一试 »

描述

textOverflow 属性指定当文本溢出包含元素时应该发生的情况。


浏览器支持

Property
textOverflow Yes Yes Yes Yes Yes

语法

返回 textOverflow 属性:

object.style.textOverflow

设置 textOverflow 属性:

object.style.textOverflow = "clip|ellipsis| string|initial|inherit"

属性值

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

技术细节

默认值: 夹子
返回值: 一个字符串,表示元素的文本溢出属性
CSS版本 CSS3

相关页面

CSS 参考:文本溢出属性