how to increase text area size in css code example
Example 1: how to increase the area of a text are
textarea {
width: 500px;
height: 200px;
}
Example 2: scale textarea
<textarea rows="10" style="font-size:2vw; width:100%;"></textarea>
textarea {
width: 500px;
height: 200px;
}
<textarea rows="10" style="font-size:2vw; width:100%;"></textarea>