实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
x
 
1
<!DOCTYPE html>
2
<html>
3
<head>
4
<style>
5
div.scroll
6
{
7
background-color:#00FFFF;
8
width:100px;
9
height:100px;
10
overflow:scroll;
11
}
12
13
div.hidden 
14
{
15
background-color:#00FF00;
16
width:100px;
17
height:100px;
18
overflow:hidden;
19
}
20
</style>
21
</head>
22
23
<body>
24
<p>The overflow property specifies what to do if the content of an element exceeds the size of the element's box.</p>
25
26
<p>overflow:scroll</p>
27
<div class="scroll">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
28
29
<p>overflow:hidden</p>
30
<div class="hidden">You can use the overflow property when you want to have better control of the layout. The default value is visible.</div>
31
</body>
32
</html>
33