实例代码“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
13
div.test:hover
14
{
15
text-overflow:inherit;
16
overflow:visible;
17
}
18
</style>
19
</head>
20
<body>
21
22
<p>Hover over the two divs below, to see the entire text.</p>
23
24
<div class="test" style="text-overflow:ellipsis;">This is some long text that will not fit in the box</div>
25
<br>
26
<div class="test" style="text-overflow:clip;">This is some long text that will not fit in the box</div>
27
28
</body>
29
</html>
30