Hapus Ubah Ukuran dari TextArea
textarea {
resize: none;
}
Vivacious Vole
textarea {
resize: none;
}
<textarea style="resize: none;"></textarea>
-- CSS --
resize: none;
-- HTML --
<textarea style="resize: none;"></textarea>
You can either apply this as an inline style property like so:
<textarea style="resize: none;"></textarea>
or in between
<style>...</style> element tags like so:
textarea { resize: none; }