html textarea unscalable

Solutions on MaxInterview for html textarea unscalable by the best coders in the world

showing results for - "html textarea unscalable"
Mirko
05 Jan 2019
12 ways to do it:
2IN CSS:
3	textarea {
4        resize: none;
5    }
6OR IN HTML:
7	<textarea style="resize:none">...</textarea>
8