php - How do I add inline css to dropdown in Yii? -


this code:

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

i trying add inline css dropdown, example not work. why ?

it should this:

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

Comments

Popular posts from this blog

How to run C# code using mono without Xamarin in Android? -

c# - SharpSsh Command Execution -

python - Specify path of savefig with pylab or matplotlib -