<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>overflow属性</title>
<link rel="stylesheet" href="box_4.css" type="text/css"/>
</head>
<body>
<div>overflow属性是CSS中的重要属性。除了用于清除浮动外,还可用于盒子内的元素超出盒子自身的大小时,溢出内容的显示方式。</div>
</body>
</html>
@charset "utf-8";
/* CSS Document */
div{
width: 100px;
height: 140px;
background: skyblue;
overflow: scroll;
}