我应该怎么做才能垂直呈现我的列表,我也希望文本出现在单选按钮的左侧
<div class="editor-label">
@Html.LabelFor(m => m.HowDidYouHear, "سمعت عن الملتقى من خلال")
</div>
<div class="editor-field">
@foreach (var opt in Model.HowDidYouHear)
{
<label for="opt">@opt</label>
@Html.RadioButtonFor(m => m.SelectedHowDidYouHear, opt, new { id = opt })
}
</div>