Dbc.checklist format

i want to dbc.checklist label and box alignment but when i use
dbc.Checklist(
options=[
{‘label’: 'Brand Volume Share – Pre VBP (12 M) ', ‘value’: ‘4Qr_Brand_share’},
{‘label’: ‘Brand Value Size – Pre VBP (12 M)’, ‘value’: ‘diff2’},
{‘label’: “Molecule Value Size – Pre VBP (12 M)”, ‘value’: ‘diff3’}

                ],
                value=['4Qr_Brand_share', 'diff2', 'diff3'],
                id="Checklist_ba_dimension1_vbp",
                labelStyle={'display': 'flex'},
                className="p-1"
            ),

it appears the word is upper than the box
捕获

Hello @shannon1,

What happens if you take out the className?

And the flex is probably making it center the label as well, so try taking that out as well.

OK,thank you,i’ll try it,