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

时间:2015-04-01 14:13:28

标签: php css yii

这是我的代码:

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

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

2 个答案:

答案 0 :(得分:2)

应该是这样的:

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

答案 1 :(得分:0)

This should work

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