Showing posts with label resize grip on multi line textboxes. Show all posts
Showing posts with label resize grip on multi line textboxes. Show all posts

Friday, August 16, 2019

Remove resize grip on multiline textboxes

We can use css to easily remove the resize grip shown on multi line text boxes as shown below.

<style type="text/css">

textarea {
   resize: none;
}

</style>

Cheers,
Samitha