How to remove scrollbars from textarea with CSS? Spread the love To remove scrollbars from textarea with CSS, we set the overflow property. For instance, we write <textarea style="overflow: hidden"></textarea> to set overflow to hidden to hide the scroll on the text area. Related