Is there a way to align radio buttons vertically instead of horizontally like this?
Sex (button)Male
(button) Female
No matter what I try, it ends up looking like this
Sex (button)Male
(button) Female
How can I adjust the margin left of the second radio button so that it appears directly below the first one?
<label for="Sex">Sex:</label>
<asp:RadioButton ID="male" runat="server" GroupName="gender"
Text="Male"/>
<br/>
<asp:RadioButton ID="female" runat="server" GroupName="gender" Text="Female"/>