Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当表单助手创建复选框时,它们垂直堆叠。我希望它们水平排列以节省空间。我该怎么做呢?
尝试单独执行每个复选框。
<?php echo $this->Form->checkbox('somegroup', array('value' => 'foo', 'style' => 'float: left; display: inline')); echo $this->Form->checkbox('somegroup', array('value' => 'bar', 'style' => 'float: left; display: inline')); ?>