yii2 中DropDownList 的样式可以格式化吗?
Can you format the style of the DropDownList in yii2?
你能在 yii2 中格式化 DropDownList 的样式吗?我有以下代码从 table 生成列表,我想更改要选择的项目的文本大小和颜色。
<div class="form-group search-form">
<?php
echo $form->field($model, 'spec')
->dropDownList(
$specialities,
['prompt'=>'Any Speciality']
)->label('');
?>
</div><!--end of form-group-->
应该是选项
<div class="form-group search-form">
<?php
echo $form->field($model, 'spec')
->dropDownList(
$specialities,
['prompt'=>'Any Speciality',
'options' => ['style' => 'color: #FA4577; font-size: 18px;'],]
)->label('');
?>
</div><!--end of form-group-->
你能在 yii2 中格式化 DropDownList 的样式吗?我有以下代码从 table 生成列表,我想更改要选择的项目的文本大小和颜色。
<div class="form-group search-form">
<?php
echo $form->field($model, 'spec')
->dropDownList(
$specialities,
['prompt'=>'Any Speciality']
)->label('');
?>
</div><!--end of form-group-->
应该是选项
<div class="form-group search-form">
<?php
echo $form->field($model, 'spec')
->dropDownList(
$specialities,
['prompt'=>'Any Speciality',
'options' => ['style' => 'color: #FA4577; font-size: 18px;'],]
)->label('');
?>
</div><!--end of form-group-->