I have a primefaces selectManyCheckbox element with dynamic content:
<p:selectManyCheckbox
    id="mySelectManyCheckbox"
    value="#{myView.mySelectManyCheckboxValue}"
    layout="responsive"
    columns="1"
>
    <f:selectItems
        value="#{myView.myCollectionOfCheckBoxes}"
        var="singleCheckbox"
        itemLabel="#{singleCheckbox.description}"
        itemValue="#{singleCheckbox.id}"
    />
</p:selectManyCheckbox>
I face a css issue, when the label is too long, it goes underneath the checkbox element.
Is there any approach to show label right to the checkbox and break? something like this to better understand:


 
    