使用 CSS 使 Div 垂直滚动


我们网站上可能要使用的内容可能会非常庞大,占用大量空间,这意味着网站的其他元素可能会被移位,从而影响网站的响应速度。为了避免这种情况,需要为用户提供可滚动的内容,以便用户如有兴趣可以向下滚动以阅读全部内容。

在本文中,我们将了解如何使 div 垂直滚动以及我们将使用什么属性来实现。

如何使 div 垂直滚动?

overflow 属性可用于使 DIV 垂直滚动,因为它可以在 overflow 属性中输入多个值。例如 hidden 和 auto。我们可以根据使用值创建水平和垂直滚动条。如果我们使用 auto 值,则可以获得垂直滚动条。让我们看看 overflow 属性的语法。

语法

overflow:hidden/visible/clip/scroll/auto/inherit;

我们将使用 x 轴和 y 轴,然后可以将 x 轴的属性设置为 hidden,y 轴设置为 auto,这将隐藏水平滚动条,只有垂直滚动条可见,并且我们将自动获得所需的 div。

示例

在这个例子中,我们将声明一个 div,然后编写一个段落,我们将向其中添加 overflow 属性以使 div 垂直滚动。

<!DOCTYPE html>
<html lang="en">
<head>
   <title>Example of vertically scrollable div</title>
   <style>
      h2 {
         color: Green;
      }
      .scrl {
         padding: 3px;
         color: white;
         margin: 2px, 2px;
         background-color: black;
         height: 118px;
         overflow-x: hidden;
         color: white;
         overflow-y: auto;
         text-align: justify;
         width: 489px;
      }
   </style>
</head>
<body>
   <center>
      <h2>Hi! This an example of the vertically scrollable div</h2>
      <div class="scrl">This is an example of the vertically scrollable 
         div many beginner coders need the help of some articles or some sort of tutorials
         to write there code. There are many instances in which the coder might need help
         or can be stuck on a particular question. The community of coders is very huge 
         and is ready to help everyone at anywhere and at whatever time. The coding community
         will help the coder to enhance his skills and his fluency in code. The coder can 
         choose a language to write his or her code depending on his interest as every 
         language has its own expertise and functions.
      </div>
   </center>
</body>
</html>

在上面的代码中,我们使用了 overflow 属性并将其 x 轴更改为 hidden,y 轴更改为 visible,这使我们在我们在这里编写的段落中获得了垂直滚动条。让我们看看执行代码后将获得的输出。

您可以查看上面的输出,并看到我们有一个垂直滚动条,可用于向下滚动。

注意 - 当我们使用 overflow 属性时,必须指定“块级元素”的元素,否则它可能无法工作。因为该属性主要用于裁剪内容或添加滚动条(无论垂直还是水平),因为使用的内容太大而无法放入指定区域。

让我们再看一个例子来更好地理解这个属性。

示例

在这个例子中,我们将属性的值设置为 auto,而不是更改属性的 x 轴和 y 轴以使 div 垂直滚动。以下是相应的代码。

<!DOCTYPE html>
<html lang="en">
<head>
   <title> Another Example of vertically scrollable div</title>
   <style>
      .scrlr {
         margin: 4px;
         padding: 4px;
         color: white;
         background-color: black;
         width: 488px;
         height: 118px;
         margin: 4px;
         text-align: justify;
         overflow: auto;
         width: 488px;
         text-align: justify;
      }
      h2 {
         color: Red;
      }
   </style>
</head>
<body>
   <center>
      <h2>Hi! This another example of the verticallly scrollable div</h2>
      <div class="scrlr">This is an example of the vertically scrollable div
         many beginner coders need the help of some articles or some sort of tutorials to
         write there code. There are many instances in which the coder might need help or
         can be stuck on a particular question. The community of coders is very huge and
         is ready to help everyone at anywhere and at whatever time. The coding community
         will help the coder to enhance his skills and his fluency in code. The coder can
         choose a language to write his or her code depending on his interest as every
         language has its own expertise and functions.
      </div>
   </center>
</body>
</html>

在上面的代码中,我们将 overflow 属性的值更改为 auto,而不是将 x 轴设置为 hidden 和 y 轴设置为 auto,并使用了相同的示例来查看我们的输出是什么。让我们看看从此代码生成的输出。

您可以查看上面的输出,并看到即使在 overflow 属性上使用 auto 值后,我们仍然有滚动条。

结论

overflow 属性被广泛用于裁剪内容,如果内容占用太多空间。或者,如果我们想添加一个滚动条以供用户向下滚动,从而减少其在网页上占用的整体空间。

在本文中,我们了解了如何使用 overflow 属性以及如何为 div 添加垂直滚动条,以及有关 overflow 属性中使用值的更多信息。

更新于: 2023年1月18日

482 次查看

开启你的 职业生涯

通过完成课程获得认证

开始学习
广告