首页htmloverflowCSS Property Value - 如何overflow: auto;

CSS Property Value - 如何overflow: auto;

我们想知道如何overflow: auto;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#resize {
  background: #444;
  color: white;
  position: absolute;
  top: 50px;
  left: 50px;
  right: 50px;
  bottom: 50px;
  overflow: auto;
}

p {
  line-height: 2;
  margin: 0;
}
</style>
</head>
<body>
  <div id="resize">
    <p>drag top of this frame down to see scroll activate</p>
    <p>content</p>
    <p>content</p>
    <p>content</p>
  </div>
</body>
</html>