首页htmloverflow_yCSS Property Value - 如何overflow-y: hidden;

CSS Property Value - 如何overflow-y: hidden;

我们想知道如何overflow-y: hidden;

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
#two {
  border: 5px solid black;
  height: 200px;
  width: 20000px;
}

#one {
  border: 1px solid red;
  height: 200px;
  width: 200px;
  overflow-y: hidden;
  overflow-x: scroll;
}
</style>
</head>
<body>
  <div id="one">
    <div id="two"></div>
  </div>
</body>
</html>