문제

I have a HABTM relation and when i use the following code. the Multiple Select is pretty long in size. i wanna know how to reduce the size.

<label for="checkbox">Cuisines:</label>
        <?php echo $this->Form->input('Cuisine', array('label' => false, 'div'=> false, 'class' => 'short')); ?>

alt text

I am not finding any option to reduce this size. should i do it with CSS only ?

도움이 되었습니까?

해결책 2

select { height: 210px;} 

worked. Thanks a lot.

다른 팁

You could use the "size" attribute.

<label for="checkbox">Cuisines:</label>
<?php echo $this->Form->input('Cuisine', array('label' => false, 'div'=> false, 'size' => 3)); ?>
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top