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

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android SDK Location Should Not Contain Whitespace, As This Cause Problems With NDK Tools