I have an HTML textarea that is of fixed width, but variable height. I would like to set overflow:scroll and be able to show a vertical scrollbar, but not a hor
overflow:scroll
Disable horizontal scrollbar completely by adding this code.
body{ overflow-x: hidden; overflow-y: scroll; }