0

I am trying to assign a class to form end button but when i try to style it by calling the class in css file, it do not make any effect.

Form Button:

echo $this->form->end('Sign Up', array('class' => 'forminput'));

CSS:

.forminput
{
width: 292px;
height: 32px;
}
4

1 に答える 1

4

$this->Form->submit()必要なオプションを指定して送信ボタンを作成するために使用し$this->Form->end()、パラメータを指定せずにフォーム タグを単純に閉じるために使用します。

于 2012-09-29T14:24:18.867 に答える