首页htmloverflow_xCSS Property Value - 如何overflow-x: hidden; 隐藏垂直

CSS Property Value - 如何overflow-x: hidden; 隐藏垂直

我们想知道如何overflow-x: hidden; 隐藏垂直。

<!DOCTYPE html>
<html>
<head>
<style type='text/css'>
.one {
  max-height: 100px;
  max-width: 100px;
  overflow-x: hidden;
  overflow-y: scroll;
}
</style>
</head>
<body>
  <div class="one">
    <h1>This is line</h1>
    <h1>This is line</h1>
    <h1>This is line</h1>
    <h1>This is line</h1>
    <h1>This is line</h1>
    <h1>This is line</h1>
    <h1>This is line</h1>
  </div
</body>
</html>