Is it possible to hide the scroll bar on an HTML textarea element using CSS or any other means ?
To hide the horizontal scrollbar and prevent horizontal scrolling, use overflow-x: hidden: HTML.
To prevent the resizing of the textarea you can use resize: none . To avoid scrollbars you can use overflow: hidden or just overflow-x: hidden to hide them only horizontally.
the easiest way would be to use "readonly" instead. another way would be to use a fixed-height div will overflow:scroll that looks like a textarea but isn't.
style="overflow:hidden"
Not sure why you'd want to do that, though.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With