+ 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 .
3 ответов
+ 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.
+ 4
width...
<textarea style="width:100%;"></textarea>
0
why not try using css. width and height.