0

如何为 Kohana 3 表单添加样式。

<?= Form::input('new_tag', '',  'style="height:1000px;"');?>

这似乎不起作用。它抱怨它需要第三个参数作为数组。有任何想法吗?

4

2 回答 2

3

使用 CSS。造型不属于这里。

于 2013-06-19T18:08:46.793 回答
2

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'));?>
于 2013-06-19T18:02:53.430 回答