Pergunta

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

Foi útil?

Solução

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'}) }}
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top