'How do I add a space between a RadioButtonList's radio buttons and their text?

I have been reading about some workaround but haven't found anything that works for me. I'm using Bootstrap in my ASPX page to display a RadioButtonList with "Yes" and "No" options like so:

<div class="form-group my-3">
    <label class="form-label" style="margin-top: 0px; margin-right: 15px; margin-bottom: 0px;">I worked in person:</label>
    <asp:RadioButtonList runat="server" ID="input_inPerson">
        <asp:ListItem Selected="False" Value="true">Yes</asp:ListItem>
        <asp:ListItem Selected="False" Value="false">No</asp:ListItem>
    </asp:RadioButtonList>
</div>

The button and text are not spaced at all, as shown here:

Poorly spaced button and text

My question is, are there any ways to add a space between this button and the text? If so, can I use bootstrap's "m" classes to do it?



Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source