Dash Checklist Grig

Hello,

Have code:

html.Div(dbc.FormGroup([
                        dbc.Checklist(
                            options=[
                                {"label": s, "value": s}
                                for s in list_choice
                            ],
                            value=[],
                            id="choose", inline=True
                        )
                    ]))

Please, tell me how can I group the elements in an even grid?
Thank you