+ 1
How do you make a scrolling text box?
In html, I don’t know how to make a scrolling paragraph. I’m thinking of an element, that is a paragraph, but you scroll it up and down to see the whole thing. Is there a way to do this in CSS or HTML? Thank you.
2 Answers
+ 2
Make a fixed height then add the overflow property of the CSS
box
{
height : 30vh;
overflow : "scroll";
}
0
Thankyou