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')); ?>