Result Size: 625 x 534
x
 
<!DOCTYPE html>
<html>
<head>
<style>
div {
  background-color: #eee;
  width: 200px;
  height: 50px;
  border: 1px dotted black;
  overflow: auto;
}
</style>
</head>
<body>
<h2>CSS overflow</h2>
<p>auto 值类似于scroll,只是在需要的时候加上滚动条:</p>
<div>当你想更好地控制布局时,可以使用 overflow 属性。 overflow 属性指定如果内容溢出元素的框会发生什么。</div>
</body>
</html>