实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style> 
5
div.test
6
{
7
white-space:nowrap; 
8
width:12em; 
9
overflow:hidden; 
10
border:1px solid #000000;
11
}
12
</style>
13
</head>
14
<body>
15
16
<p>The following two divs contains a long text that will not fit in the box. As 
17
you can see, the text is clipped.</p>
18
<p>This div uses &quot;text-overflow:ellipsis&quot;:</p>
19
20
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
21
<p>This div uses &quot;text-overflow:clip&quot;:</p>
22
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
23
24
</body>
25
</html>
26