I'm attempting to create a div that contains a paragraph within it. My goal is to have the ability to scroll down when there is overflow due to the content of the paragraph, thus preventing it from extending beyond the boundaries of the DIV. However, I am facing an issue where the div only scrolls horizontally and not vertically.
Here's what I have already experimented with:
.taskParagraph {
font-size: 0.4cm;
color: black;
overflow-x: scroll;
}