解决方法
{{ form_widget(form.name,{ 'attr': {'class': 'foo'} }) }}
这是具有类foo的表单窗口小部件的正确语法.换句话说,表单中的表单字段.
这是通过渲染完成的
{{ form_start(form,{ 'attr': {'class': 'foo','id': 'bar',... } }) }}
请参阅form_start here上的这篇简短文档
Renders the start tag of a form. This helper takes care of printing the configured method and target action of the form. It will also include the correct enctype property if the form contains upload fields.
您可能还对表单变量感兴趣.它们记录在here中.总而言之,有关于您可以使用的所有函数和变量的完整文档here
我不建议你使用内联样式.只需使用您提供表单的ID和/或类来进行样式设置.