如何为 Kohana 3 表单添加样式。
<?= Form::input('new_tag', '', 'style="height:1000px;"');?>
这似乎不起作用。它抱怨它需要第三个参数作为数组。有任何想法吗?
使用 CSS。造型不属于这里。
Check out the docs for the Form creation method
It does indeed want an array at the end.
<?= Form::input('new_tag', '', array('style' => 'height:1000px'));?>