x
1
2
<html>
3
<head>
4
<meta charset="utf-8">
5
<style>
6
div {
7
background-color: #00FFFF;
8
width: 150px;
9
height: 150px;
10
overflow: auto;
11
}
12
</style>
13
</head>
14
15
<body>
16
<p>overflow 属性规定当内容溢出元素框时发生的事情。</p>
17
18
<div>
19
当你想更好的控制布局时你可以使用 overflow 属性。尝试修改 overflow 属性为: visible, hidden, scroll, 或 inherit 并查看效果。 默认值为 visible。
20
</div>
21
</body>
22
23
</html>