textarea resize to fit text code example
Example 1: textarea resize off
<textarea class="myTextArea"></textarea>
<style>
.myTextArea {
resize: none;
}
</style>
Example 2: textarea scale to content
<textarea rows="10" style="font-size: 2vw; width:100%;"></textarea>