代码编辑器:
x
1
2
<meta charset="utf-8">
3
<link href="/static/next/css/tryit.css?v=2017082407" rel="stylesheet"/>
4
<style>
5
div
6
{
7
background-color:#00FFFF;
8
width:150px;
9
height:150px;
10
overflow:auto;
11
}
12
</style>
13
<p>overflow 属性规定当内容溢出元素框时发生的事情。</p>
14
<div>
15
当你想更好的控制布局时你可以使用 overflow 属性。尝试修改 overflow 属性为: visible, hidden, scroll, 或 inherit 并查看效果。 默认值为 visible。
16
</div>
17
<footer>简单教程,简单编程<br/>Copyright © 简单教程 www.twle.cn</footer>
18