如何在 Yii 中添加内联 css 到下拉列表?

How do I add inline css to dropdown in Yii?

这是我的代码:

 <?php echo $form->dropDownList($model, 'type', CHtml::listData($ab->type, 'id', 'name'), array('class' => 'edit'), array('width:165px')); ?>

我正在尝试将内联 css 添加到我的下拉列表中,但我的示例不起作用。为什么?

应该是这样的:

<?php echo $form->dropDownList($model, 'type', CHtml::listData($ab->type, 'id', 'name'), array('class' => 'edit', 'style' => 'width:165px')); ?>

This should work

<?php echo $form->dropDownList($model, 'type', CHtml::listData($ab->type, 'id', 'name'), array('class' => 'edit', 'style'=>'width:165px;')); ?