【问题标题】:Change the style of Kohaha forms更改 Kohaha 表单的样式
【发布时间】:2013-06-19 17:59:36
【问题描述】:

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

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

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

【问题讨论】:

    标签: css forms kohana kohana-3


    【解决方案1】:

    使用 CSS。样式不属于这里。

    【讨论】:

      【解决方案2】:

      查看the docs for the Form creation method

      它确实需要一个最后的数组。

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

      【讨论】:

      • 谢谢,我必须使用以下命令才能正常工作。 = Form::input('new_tag', '', array('style' => 'height:1000px'));?>
      猜你喜欢
      • 2017-05-17
      • 1970-01-01
      • 1970-01-01
      • 2014-05-05
      • 2015-10-07
      • 2018-02-13
      • 2011-12-03
      • 1970-01-01
      • 2014-01-11
      相关资源
      最近更新 更多