How to set Dropdown list width in Yii2, here the code
<?= $form->field($model, 'id_ts')
->dropDownList(
ArrayHelper::map(vision::find()->all(),'id_ts', 'vision'),
[
'prompt' =>'',
'disabled' => $model->isNewRecord ? true : false
]
) ?>
How to make dropdown list box wider ?