+ 1

how can i make this tearea a static size

<div> <form method="POST" action="http://formspree.io/web.hz.mail@gmail.com"> <input required type="email" name="email" placeholder="Your email required!"> <input type="name" name="user" placeholder="username or your name"> <input type="why" name="title" placeholder="title of post"> <!-- How do I make Item below static --> <textarea required name="message" placeholder="Your message" ></textarea> <input type="submit" value="Send"> </form> </div>

30th Sep 2017, 8:47 AM
James Hozlock
James Hozlock - avatar
4 Answers
+ 1
I found the method I was looking for although Calvin's method also works very well. what I did to solve this problem was the line rows="numbers" cols="numbers"
30th Sep 2017, 4:52 PM
James Hozlock
James Hozlock - avatar
+ 3
static width of element or static length of input?
30th Sep 2017, 8:57 AM
Kartikey Sahu
Kartikey Sahu - avatar
0
Both with and hight
30th Sep 2017, 9:03 AM
James Hozlock
James Hozlock - avatar
0
textarea { resize: none; }
30th Sep 2017, 10:34 AM
CalviŐ˛
CalviŐ˛ - avatar