문제

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