0
<Textarea> html
Hi. Tell me please, how to change the size for <textarea> https://code.sololearn.com/WX1K0s1zH94z/?ref=app
2 Antworten
+ 4
It can be done using CSS: 
textarea {
  height: 50%; 
  width: 20%;
}
Alternatively, you can use the rows and cols attributes of the textarea tag. 
<textarea rows="10" cols="50">
+ 1
Thanks





