Home >Web Front-end >CSS Tutorial >How Can I Make a Textarea Automatically Resize to its Content and Hide Scrollbars?
Problem:
Achieving a textarea's height that dynamically adjusts to fit its content, eliminating the need for scrollbars.
Solution Using JavaScript:
function auto_grow(element) { element.style.height = "5px"; element.style.height = (element.scrollHeight) + "px"; }
CSS Styling:
textarea { resize: none; overflow: hidden; min-height: 50px; max-height: 100px; }
Implementation:
<textarea oninput="auto_grow(this)"></textarea>
With this code, the textarea's height will expand or contract to accommodate the content, removing the need for scrollbars.
The above is the detailed content of How Can I Make a Textarea Automatically Resize to its Content and Hide Scrollbars?. For more information, please follow other related articles on the PHP Chinese website!