Can you format the style of the DropDownList in yii2 I have the following code that generates a list from a table and I wanted to change the text size and color of the items to choose from.
<div class="form-group search-form">
<?php
echo $form->field($model, 'spec')
->dropDownList(
$specialities,
['prompt'=>'Any Speciality']
)->label('');
?>
</div><!--end of form-group-->