How To Always Show Scrollbars with CSS?
https://www.geeksforgeeks.org/css/how-to-always-show-scrollbars-with-css/
overflow: scroll;
How to move scrollbar from left to right in css
https://stackoverflow.com/questions/17060845/how-to-move-scrollbar-from-left-to-right-in-css?noredirect=1&lq=1
direction: ltr;
Hide scroll bar if not needed
https://stackoverflow.com/questions/18716863/css-hide-scroll-bar-if-not-needed
Set overflow-y property to auto, or remove the property altogether if it is not inherited.