Yii:我怎样才能给所有dropDownList提供相同的宽度?

时间:2011-07-13 13:27:51

标签: php yii

我需要给_form和_search中的所有dropDownList提供相同的宽度。我怎么能这样做?

感谢。

2 个答案:

答案 0 :(得分:3)

您可以做的一件事是将以下css包含在partial的顶部。

<style> select { width: 8em } </style>

答案 1 :(得分:0)

      echo CHtml::dropDownList("id", $arr_bit, $list, array('id' => "id",
                    'onchange' => 'send(this.id, this.value)',
                    'style'=>'height: auto; width: auto;'
                            )
                     );