Style textOverflow 属性
改变 textOverflow 属性:
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>蜜蜂教程(mifengjc.com)</title>
<style>
#myDIV {
border: 1px solid black;
background-color: lightblue;
width: 175px;
white-space: nowrap;
overflow: hidden;
text-overflow: visible;
}
</style>
</head>
<body>
<p>点击“尝试一下”按钮,改变 DIV 元素的 text-overflow 属性:</p>
<button onclick="myFunction()">尝试一下</button>
<div id="myDIV">
Lorem ipsum dolor sit amet, consectetuer adipiscing elit,
<br> sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat.<br> Ut wisi enim ad minim veniam,<br> quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat.
</div>
<script>
function myFunction() {
document.getElementById("myDIV").style.textOverflow = "ellipsis";
}
</script>
</body>
</html>
定义和用法
textOverflow 属性规定当文本溢出包含它的元素,应该发生什么。
浏览器支持
所有主流浏览器都支持 textOverflow 属性。
语法
返回 textOverflow 属性:
object.style.textOverflow
设置 textOverflow 属性:
object.style.textOverflow = "clip|ellipsis|string|initial|inherit"
属性值
值 | 描述 |
---|---|
clip | 默认值。裁剪文本。 |
ellipsis | 使用省略符号("...")来代表被裁剪的文本。 |
string | 使用给定的字符串来代表被裁剪的文本。 |
initial | 设置该属性为它的默认值。请参阅 initial。 |
inherit | 从父元素继承该属性。请参阅 inherit。 |
技术细节
默认值: | clip |
---|---|
返回值 | 字符串,表示元素的 text-overflow 属性。 |
CSS 版本 | CSS3 |
相关文章
CSS 参考手册:text-overflow 属性