Textarea Resize: None Code Example


Example 1: disable textarea resize


textarea {   /* for all text* area elements */
resize: none;
}

#foo { /* for particular id */
resize: none;
}

Example 2: textarea resize off


<textarea class="myTextArea"></textarea>
<style>
.myTextArea
{
resize: none;
}
</style>

Example 3: textarea disable resize


<textarea style="resize: none;"></textarea>

Comments

Popular posts from this blog

530 Valid Hostname Is Expected When Setting Up IIS 10 For Multiple Sites

C Perror Example

Converting A String To Int In Groovy