質問

how i can change the next tag in show.html.twig

{{ form_row(form.quantity, {'attr': {'class': 'center-text'}, 'empty_value': '1'}) }}

I need change the style, how I do it?

thanks

役に立ちましたか?

解決

Try add style property to the attr with any CSS styles

{{ form_row(form.quantity, {'attr': {'class': 'center-text', style: "color: red;"}, 'empty_value': '1'}) }}
ライセンス: CC-BY-SA帰属
所属していません StackOverflow
scroll top