How to Set the Size of Textarea Element

In this post, we'll learn how to set the size of a textarea element.
There are two ways to do this, one using HTML, and the other using CSS.
We'll go over both ways so you can choose the one that works best for you.
Set Size of Textarea Element Using HTML
You can set the size of a textarea element using the rows
and cols
attributes.
These attributes will define the number of rows and columns of the text that the textarea will display.
Here's an example of a textarea that supports 10 rows and 50 columns:
<textarea rows="10" cols="50">
Example text here
</textarea>
Test it out here:
- HTML
Set Size of Textarea Element Using CSS
You can also use CSS to change the size of a textarea element. In this case, rather than adjust the number of rows and columns, you can just directly change the dimensions of the textarea.
Simply use the width
and height
properties to set the width and height of the textarea.
Here's an example of a textarea that has a width of 200px and a height of 100px:
<textarea style="width: 200px; height: 100px;">
Example text here
</textarea>
Of course, you can also use CSS classes to set the size of the textarea.
<textarea class="textarea">
Example text here
</textarea>
.textarea {
width: 200px;
height: 100px;
}
Try it for yourself here:
- HTML
- CSS
Conclusion
In this post, we've seen the two best ways to change the size of the textarea element. You can change the size using HTML, or CSS.
You can now decide for yourself what works best for you.
Thanks for reading and happy coding!
If you want to learn about web development, founding a start-up, bootstrapping a SaaS, and more, follow me on Twitter! You can also join the conversation over at our official Discord!
Leave us a message!