I'm trying to make a div that includes a paragraph inside it, and my target is that when there is an overflow because of the paragraph content, I'll be able to scroll down so the paragraph won't get out of the DIV. My problem is that the div only scrolls to it's width and not to it's height.
That's what I've already tried:
.taskParagraph {
font-size: 0.4cm;
color: black;
overflow-x: scroll;
}