gpt4 book ai didi

css - 使用助手将多个类分配给 html 元素

转载 作者:太空宇宙 更新时间:2023-11-04 03:48:38 25 4
gpt4 key购买 nike

对于我在 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 元素提供多个类?

最佳答案

您可以用空格分隔每个 css 类

'class' => 'pure-form pure-form-aligned'

关于css - 使用助手将多个类分配给 html 元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23725190/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com