how to make comment box larger | Sololearn: Learn to code for FREE!
New course! Every coder should learn Generative AI!
Try a free lesson
+ 1

how to make comment box larger

Hi I have a question on the HTML how can i make my comment box larger? I just get standard box, tried to make it bigger but to no success .

3rd May 2017, 8:18 AM
B.K
B.K - avatar
3 Answers
+ 8
is it a textarea? if so, use its attributes cols and rows <textarea cols="10" rows="10"></textarea> or use css to adjust the width and height.
3rd May 2017, 8:22 AM
Mario L.
Mario L. - avatar
+ 4
width... <textarea style="width:100%;"></textarea>
3rd May 2017, 8:21 AM
Calviղ
Calviղ - avatar
0
why not try using css. width and height.
3rd May 2017, 8:30 AM
Cltnbatchelor
Cltnbatchelor - avatar