x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
div.scroll {
7
background-color: #00FFFF;
8
width: 100px;
9
height: 100px;
10
overflow: scroll;
11
}
12
13
div.hidden {
14
background-color: #00FF00;
15
width: 100px;
16
height: 100px;
17
overflow: hidden;
18
}
19
</style>
20
</head>
21
22
<body>
23
<p>overflow 属性规定当内容溢出元素框时发生的事情。.</p>
24
25
<p>overflow:scroll</p>
26
<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>
27
28
<p>overflow:hidden</p>
29
<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>
30
</body>
31
</html>