开发者

Yii: How can I give all dropDownList the same width?

开发者 https://www.devze.com 2023-03-20 12:40 出处:网络
I need to give all dropDownList in _开发者_Go百科form and _search the same width. How can I do that?

I need to give all dropDownList in _开发者_Go百科form and _search the same width. How can I do that?

Thanks.


One thing you can do is include the following css at the top of either partial.

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


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

精彩评论

暂无评论...
验证码 换一张
取 消