对于我在CakePHP中构建的应用程序,我想使用第三方CSS模板(Pure-CSS)。模板的设计使我不时地将多个类分配给单个元素。在许多地方我使用CakePHP助手,例如。用于生成表格。我无法弄清楚如何使用这些帮助器分配多个类:
//this works (only one class)
echo $this->Form->create('Profile',array('id' => 'myForm', 'class' => 'pure-form'));
//but none of these does
echo $this->Form->create('Profile',array('id' => 'myForm', 'class' => 'pure-form,pure-form-aligned'));
echo $this->Form->create('Profile',array('id' => 'myForm', 'class' => {'pure-form','pure-form-aligned'}));
echo $this->Form->create('Profile',array('id' => 'myForm', 'class' => 'pure-form', 'class' => 'pure-form-aligned'));
如何使用辅助方法为html元素提供多个类?
答案 0 :(得分:2)
您可以使用空格
分隔每个css类'class' => 'pure-form pure-form-aligned'