如何在 symfony / TextType / 'label' 中使用 <style>

How to use <style> in symfony / TextType / 'label'

我想将星号 "*" 的颜色更改为红色。

<?php
...

->add('titreChapitre', TextType::class, [
    'required' => true,
    'label' => 'Titre de la chapitre'.'*',
])

...

您可以将 class 添加到标签:

'label_attr' => ['class' => 'req'],

然后用css添加内容:

req:after {
    content: " *";
    color: red;
}

或者无论如何你想使用样式属性:

'label_attr' => ['style' => '.... '],