resize: none;
via Page or Site Settings.style
as the name and resize: none;
as the value.To disable the textarea resize control in Webflow, you’ll need to apply a CSS style that removes the default browser functionality. Here’s how to do it using Webflow’s built-in tools.
No-Resize-Textarea
) if it doesn’t have one already.Go to Page Settings (if you only want this change on one page) or Site Settings > Custom Code (for all pages).
Add the following CSS rule inside the Before or Before
section:
textarea.No-Resize-Textarea { resize: none; }
This CSS tells the browser to disable the resize handle for any <textarea>
with the class No-Resize-Textarea
.
style
.resize: none;
To disable textarea resizing in Webflow, either apply resize: none;
using a custom class via CSS or use a Custom Attribute on the textarea element. This ensures users can’t resize the textarea manually.