After adding a vertical scrollbar to a text box in my main CSS due to long text, everything seemed to be working perfectly...
overflow: -moz-scrollbars-vertical;
overflow-y: scroll;
...until I encountered my media queries.
Scrolling on a smartphone can be a pain, and I really need the entire text to display without a scrollbar, not just to make the scrollbar invisible. Despite trying every CSS option for "overflow" and "overflow-y," I have yet to find a solution.
It seems like I have exhausted all possible HTML and CSS options, so I'm curious if there are any other techniques I should consider?