You can simply use resize: none.
csstextarea { resize: none; }
You can also choose to adjust the textarea only horizontally or vertically, as shown below:
csstextarea { resize: vertical; }
csstextarea { resize: horizontal; }
Finally, resize: both enables the resize handles.
2024年6月29日 12:07 回复