I want all of my check lists to be on different lines but right now they are right next to each other. If I add html.Br() in between checks it breaks. I’ll include my current code and a picture.
dcc.Checklist(id='my-checklist',
options=[
{'label': 'Social Security', 'value': 'ss'},
{'label': 'Supplemental Security Income (SSI)', 'value': 'ssi'},
{'label': 'Unemployment', 'value': 'unemp'},
{'label': 'Earned Income Tax Credit', 'value': 'eitc'},
{'label': 'Child Tax Credit', 'value': 'ctc'},
{'label': 'Snap (food stamps)', 'value': 'snap'},
{'label': 'Energy Subsidy (LIHEAP)', 'value': 'energy'}
],
value=[]