-1

我需要垂直扩展表单域。

我要扩展的表单字段是“评论”字段。

目前它当前水平在一排。

谢谢你的帮助

4

2 回答 2

2

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.

于 2012-10-12T23:50:21.740 回答
0

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.

于 2012-10-12T23:47:51.853 回答