Home >Backend Development >PHP Tutorial >symfony怎么用css来控制表单的样式?

symfony怎么用css来控制表单的样式?

WBOY
WBOYOriginal
2016-06-06 20:35:25951browse

symfony怎么用css来控制表单的样式?比如我的css控制了表单中的button的样式,,这个应该怎么做到?谢谢各位

回复内容:

symfony怎么用css来控制表单的样式?比如我的css控制了表单中的button的样式,,这个应该怎么做到?谢谢各位

如果是Symfony2的话呢,就直接修改form theme,把当前的表单指定到自定义的一个表单主题文件

先复制form_div_layout.html.twig中如下的代码到自定义的表单主题文件

<code>{%- block button_widget -%}
    {%- if label is empty -%}
        {% set label = name|humanize %}
    {%- endif -%}
    <button type="{{ type|default('button') }}" block>{{ label|trans({}, translation_domain) }}</button>
{%- endblock button_widget -%}

</code>

然后就靠你自己修改啦。

因为你已经指定了表单主题文件,所以在你自定义的表单主题文件中关于button_widget的部分会覆盖掉默认的表单主题也就是form_div_layout.html.twig的定义,然后就达成效果啦。

希望能帮到你。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn