彩色边框输入为红色(树枝)

时间:2018-10-12 12:46:02

标签: php html css symfony twig

伙计们,我有一个小问题,我不知道为什么我的输入没有用红色显示...这是我的代码(应该很简单,但我看不到我的代码失败了)

我的html代码(树枝):

{{ form_widget(form.value, {'attr': {'class': 'error_input'}}) }}

我的CSS:

.error_input{
    border : 1px solid red;
}

ps:我正在使用Symfony 3.4

1 个答案:

答案 0 :(得分:1)

确定找到...

.error_input{ border : 1px solid red !important; }

但是为什么在没有!important ...的情况下无法正常工作?