本文的目的是使用 HTML 和 CSS3 属性创建一个可滚动的评论框。
方法:对于本文的范围,我们将制作一个显示评论的 div 元素,我们将创建一个可滚动的 div 元素。我们将创建一个带有“ comment-section ”类的 div。我们将在这个div 中创建另一个 div ,用于评论文本。
overflow-y属性表示 y 轴上的溢出行为是垂直的。我们必须将其设置为滚动,以便我们可以使其可滚动。
HTML代码:
HTML
GeeksforGeeks
This is first comment.
This is second comment.
This is third comment.
This is fourth comment.
This is fifth comment.
This is sixth comment.
输出: