I have a Bootstrap form with some inline radio buttons and a label. I\'d like to keep the label on the same line as the buttons, but I can\'t seem to make that happen. Here\
This is all nicely lined up including the field label. Lining up the field label was the tricky part.
Create a Task Note
@Html.Label("Create a", htmlAttributes: new { @class = "control-label col-md-5" }) @Html.RadioButtonFor(model => model.TaskTypeId, Model.TaskTaskTypeId) Task @Html.RadioButtonFor(model => model.TaskTypeId, Model.NoteTaskTypeId) Note