-3

在 cakePHP 中我如何指定测试框的高度,我知道宽度部分。我的文本框代码如下所示:

echo $this->Form->Input('moduleName',array('label' => 'Title','style'=>'width:800px;'));
4

2 回答 2

1

真的很简单: echo $this->Form->input('moduleName', array('label' => 'Title', 'style' => 'width: 800px; height: 50px;'));

于 2013-09-09T12:20:33.203 回答
0

我猜他可能在谈论 textarea 在这种情况下以下代码有效:

echo $this->Form->input('moduleName', array(
    'label' => 'Title',
    'rows' => 3,
    'style' => 'width: 800px;',
));
于 2013-09-09T22:15:53.023 回答