【发布时间】:2015-10-03 20:35:17
【问题描述】:
这是我的表单 (Yii2)
<?php $form = ActiveForm::begin(); ?>
<?= $form->field($model, 'email')->textInput(['maxlength' => true]) ?>
<?= $form->field($model, 'password')->passwordInput(['maxlength' => true]) ?>
<?= Html::submitButton($model->isNewRecord ? Yii::t('app', 'Login') : Yii::t('app', 'Update'),
['class' => $model->isNewRecord ? 'btn btn-success btn-block btn-lg' : 'btn btn-primary']) ?>
<?php ActiveForm::end(); ?>
当我运行它时,我得到一个带有黄色背景的表单。我想要一个白色的背景。所以我使用了以下css
background-color: white !important;
但它没有用。用户代理样式表有这个值
input:-webkit-autofill, textarea:-webkit-autofill {
background-color: rgb(250, 255, 189);
background-image: none;
color: rgb(0, 0, 0);
}
【问题讨论】: