我需要垂直扩展表单域。
我要扩展的表单字段是“评论”字段。
目前它当前水平在一排。
谢谢你的帮助
It depends upon the type of form field. If you want to extend the height, use a <textarea>
for comments as it's height and width are configurable:
<textarea name="comments" cols="30" rows="10"></textarea>
Then play with the cols
and rows
values. You can also use css to define it's display properties.
I don't know whether I understand you right, but you can put the form fields into an list like
<ul>
<li><input...></li>
...
</ul>
If you want to format a input or textarea field you can use css, or for textareas the html attribute cols and rows.