请问一下,我如何让textarea文字在中间显示呀(就是居中)

[img]http://dl.iteye.com/upload/attachment/291628/216cfb40-60f3-3575-83a4-dee2d2e800f5.jpg[/img]
就是把图片中的文字居中,现在是向上的,谢谢

测试小例子

[code="java"] <br> Ext.onReady(function(){<br> Ext.QuickTips.init();</p> <pre><code>var field = new Ext.form.TextArea({ width: 200, grow: true, labelSeparator:&quot;&quot;, fieldLabel: &#39;&lt;div style=&quot;margin-top:18px&quot;&gt;empty:&lt;/div&gt;&#39;, allowBlank: false, maxLength: 50, minLength: 10 }); var form = new Ext.form.FormPanel({ title: &#39;form&#39;, frame: true, items: [field], labelAlign:&quot;right&quot;, renderTo: &#39;form&#39; }); </code></pre> <p>});<br>